HTML Home
HTML Tags Reference
Selected Reading
© 2008 TutorialsPoint.COM
|
HTML <style> tag
Function:
The HTML <style> tag is used for declaring style sheets within the head of your HTML document.
Difference between HTML and XHTML:
NONE
Example:
<head>
<style type="text/css">
h1 { color:#F1F1F1 }
</style>
</head>
|
For more detail on <style> tag please check HTML Styles chapter.
Online Practice:
To Become more comfortable - Do Online Practice
Attributes:
| Attribute | Value | Description |
| type | text/css | Specifies the style sheet language as a content-type (MIME type). |
| media | screen tty tv projection handheld print braille aural all | Specifies the device the document will be displayed on. |
Standard Attributes:
| Attribute | Description |
| dir | Specifies the direction of the text |
| id | Document wide identifier |
| lang | Sets the language code. |
| xml:space | Sets the language code. |
|
|
|