CREATING EMBEDDED (INTERNAL) STYLES
To create an embedded CSS, you must define a style that you want to include in it.1. In Design view, click Format | Style | New.
2. In the Name (selector) box, type the name of the new style.
3. Under Style Type, select Paragraph or Character style.
4. Click Format, and then specify the formatting characteristics for the new style.It’s usually easier to copy these styles from somebody else's webpage! The codes are normally in the head section, so just copy and paste a style before the </head> tag.
Examples of embedded styles
This example eliminates automatic underlining for the three types of links.
<style type="text/css">
A:link {text-decoration: none} A:visited {text-decoration: none}
A:active {text-decoration: none}
</style>This example controls the colors of the links.
<style type="text/css">
A:link {color: #000066;}
A:visited {color: #000066;}
A:hover {color: #800000;}
</style>