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