Você está na página 1de 3

Internal Cascadding

<html> <head> </head> <body> <p STYLE="color:#ff0000; font-size:xx-large; font-size:150%; text-transform: capitalize;"> Inline CSS has the highest priority out of external, internal, and inline CSS. This means that you can override styles that are defined in external or internal by using inline CSS. However, inline CSS detracts from the true purpose of CSS, so use it sparingly. </p> <h1 STYLE="background:#EF6690; font: 36pt/40pt courier; border: thick dashed green; text-align: center;"> W3Schools Online Web Tutorials!</h1> <h6 STYLE="font-size: xx-small ; color: red ">All standard disclaimers apply. Your life depends on NOT copying this document in any way. This tape will </h6> <p STYLE="text-decoration: underline; font-weight:bold">DIFFRENT TYPES OF ORDERED LIST</p> <h4>Numbered list:</h4> <ol STYLE="background:#336699; color:white; text-transform:uppercase; "> <li>HTML</li> <li>ASP/JSP</li> <li>CSS/XML</li> <li>DHTML/XHTML</li> </ol> <h4>Roman numbers list:</h4> <ol STYLE="background:#000066; color:white; text-transform:lowercase; "type="I" start="6"> <li>HTML basic tags</li> <li>HTML table</li> <li>Frames</li> <li>Forms</li> </ol> <p STYLE="background-image: url(yyy.gif);background-repeat: repeat-x; color:#B9264F; font-weight:bold; font-size:22px"> The background of your website is very important, so please spend some time with this tutorial. If you are aiming for a professional website, a good rule of thumb is to use a light background with dark text. However, if you're just making a website for pleasure, then any kind of color combination is acceptable. </p> </body> </html>

Output:

Inline CSS has the highest priority out of external, internal, and inline CSS. This means that you can override styles that are defined in external or internal by using inline CSS. However, inline CSS detracts from the true purpose of CSS, so use it sparingly.

W3Schools Online Web Tutorials!


All standard disclaimers apply. Your life depends on NOT copying this document in any way. This tape will

DIFFRENT TYPES OF ORDERED LIST Numbered list: 1. 2. 3. 4. HTML ASP/JSP CSS/XML DHTML/XHTML

Roman numbers list: VI. VII. VIII. IX. HTML basic tags HTML table Frames Forms

The background of your website is very important, so please spend some time with this tutorial. If you are aiming for a professional website, a good rule of thumb is to use a light background with dark text. However, if you're just making a website for pleasure, then any kind of color combination is acceptable.

Você também pode gostar