Document internal style
The <style> tag is used to apply CSS inside the page.
The <style> tag must be inside <head> tag
If multiple <style> tags are used, they will be merged into one combining all.
Recomendation is to use one <style> tag and apply all CSS inside it.
Element Attributes
| Attribute | Value | Description |
|---|---|---|
media |
media_query | This attribute defines which media style should be applied. Default value is "all". |
nonce |
A cryptographic nonce (number used once) used to allow inline styles in a style-src Content-Security-Policy. | |
title |
This attribute specifies alternative style sheet sets. | |
type |
text/css | Deprecated attribute, should not be used. |
Global attributes
Global attributes may be applied on all elements, although some elements may have no effect on them.
<accesskey>,
<class>,
<contenteditable>,
<contextmenu>,
<data-*>,
<dir>,
<draggable>,
<dropzone>,
<hidden>,
<id>,
<lang>,
<spellcheck>,
<style>,
<tabindex>,
<title>,
<translate>.
Global Event Handler Attributes
Global Event Handler attributes may be applied on all elements, although some elements may have no effect on them.
<onabort>,
<onautocomplete>,
<onautocompleteerror>,
<onblur>,
<oncancel>,
<oncanplay>,
<oncanplaythrough>,
<onchange>,
<onclick>,
<onclose>,
<oncontextmenu>,
<oncuechange>,
<ondblclick>,
<ondrag>,
<ondragend>,
<ondragenter>,
<ondragleave>,
<ondragover>,
<ondragstart>,
<ondrop>,
<ondurationchange>,
<onemptied>,
<onended>,
<onerror>,
<onfocus>,
<oninput>,
<oninvalid>,
<onkeydown>,
<onkeypress>,
<onkeyup>,
<onload>,
<onloadeddata>,
<onloadedmetadata>,
<onloadstart>,
<onmousedown>,
<onmouseenter>,
<onmouseleave>,
<onmousemove>,
<onmouseout>,
<onmouseover>,
<onmouseup>,
<onmousewheel>,
<onpause>,
<onplay>,
<onplaying>,
<onprogress>,
<onratechange>,
<onreset>,
<onresize>,
<onscroll>,
<onseeked>,
<onseeking>,
<onselect>,
<onshow>,
<onsort>,
<onstalled>,
<onsubmit>,
<onsuspend>,
<ontimeupdate>,
<ontoggle>,
<onvolumechange>,
<onwaiting>.
Learning with HTML Editor "Try it Now"
You can edit the HTML code and view the result using online editor.
Example
<style>
h1 {
background-color: #404040;
color:#fff;
}
</style>
<style>
h2 {
background-color: black;
color:#fff;
}
</style>
<style>
p {
font-size: 13pt;
}
</style>
Click on the "Try it Now" button to see how it works.