Link to style sheets for Ipads, iPhones and Android Phones

Link to style sheets for Ipads, iPhones and Android Phones

Creating style specifically(Link to style sheets for Ipads) for iPad tablets, iPhones, and Phones based on the Android operating system requires specialized coding. We cannot simply specify the handheld media type when you link to your CSS as described in “Link to media-specific style sheets.” The Ipad, iPhone, and android os web browsers ignore the … Read more

Link to Media Specific Style Sheets in CSS3

Link to Media Specific Style Sheets in CSS3

We can link to several style sheets in your HTML file and specify that different style sheets be applied for different media using the media attribute. For example, one style sheet could be applied when the document is displayed on a computer screen another style sheet could be applied when the document is printed and … Read more

Apply a style Using an ID in CSS3

We can apply an id attribute to an HTML tag on your page to give it a unique identifier. We can then apply a style to that HTML tag using a special CSS selector for that tag. Using the id attribute to apply styles is an alternative to using the class attribute. See ” Apply … Read more

Apply a style to a tag in CSS3

We can create a CSS rule that applies the style to an HTML tag. For Example, if you want all the paragraphs on your page to have text in the Arial font face with a size of 14 points, you can create a CSS declaration with that style properties and use p as the selector. … Read more

Apply a style locally in CSS3

Apply a style locally

We can apply a style to a single instance of the tag in your file using an HTML attribute. The Style attribute enables you to apply a style rule to a tag without having to define the rule separately in an internal or external style sheet. A style applied locally overrides any style found or … Read more

Link to a Style Sheet in CSS3

We can Link to a Style Sheet to an external style sheet to assign a set of formatting rules to our HTML5 File. We use the <link> tag to specify the filename and location of the style sheet. We can link multiple files to the same style sheet to give all the pages on your … Read more

Insert special Characters in HTML5

Insert special Characters in HTML5

We can use HTML code to insert special characters into your web page text. Special characters are that do not usually appear on your keyboard. The code used to insert special characters is called entities. Entities consist of numbers are name codes preceded by an ampersand and ending with a semicolon such as &frac12; for … Read more

Creating a Definition list in HTML 5

Creating a Definition list in HTML 5

We can use a definition list in your document to define content in the format of a glossary or dictionary. Typically items in a definition list come in pairs with the first element being the term to be defined and the second being the definition. We use the <dl> tag to delimit your definition the … Read more

Create a Nested List in HTML 5

We can use a nested list to add a list with a list to your web page. A nested list enables you to display listed text at a different level within the list hierarchy, such as when you are displaying products arranged in categories and sub-categories. Web Browser uses indentation to show here a list … Read more

Creating a Bulleted list in HTML5

We can add a bulleted list to your document to set a list of items apart from the rest of the page of text. We can use this tag also called an unordered list when we do not need to show the items in a particular order. we creat a bulleted list by inserting <ul> … Read more