HTML Style Label
Style label--use this label when declaring a style in a document
The style label appears in pairs to end
Property
Media-Medium type,
Type--Contains the types of content, typically using type= "TEXT/CSS"
Example
xml/html Code copy content to clipboard
- < Head >
- < style type="text/css">
- Abbr
- {
- font-size:12px;
- }
- . text10pxwhite
- {
- font-size:10px;
- Color: #FFFFFF;
- }
- </ style >
- </ Head >
Internal reference CSS--Internal
You can use the style label to load the contents of a CSS file directly inside an HTML document.
Example
CSS Code copy content to clipboard
- <style type="Text/css"><! [cdata[
- /*----------Text style starts----------* *
- * * Dream is white 12 pixel text * *
- . dreamduwhite12px
- {
- color:White;
- font-size:12px;
- }
- * * Dream All Black 16 pixel text * *
- . dreamdublack16px
- {
- color:black;
- font-size:16px;
- }
- /*----------Text style End----------* *
- ]]></style>