<HTML>
<HEAD>
<TITLE> Styles Page 1</TITLE>
</HEAD>
<BODY>
<H1>Heading</H1>
<P>Lorem ipsum dolor sit amet... </P>
<P>Lorem ipsum dolor sit amet... </P>
</BODY>
</HTML>
HTML Source Box #2 (figure 1 right hand example, figure 2 left hand example)
<HTML>
<HEAD>
<TITLE> Styles Page 2</TITLE>
<STYLE>
<!--
H1 {font-size: 20 pt;
color: blue;
text-align: left}
BODY {font-family: "Arial";
color: green;
background: white}
.indent {text-indent: 1.25 cm;
margin-top: -.50 cm;}
-->
</STYLE>
</HEAD>
<BODY>
<H1>Heading</H1>
<P CLASS = indent>Lorem ipsum dolor sit amet... </P>
<P CLASS = indent>Lorem ipsum dolor sit amet... </P>
</BODY>
</HTML>
HTML Source Box #3 (figure 2 right hand example)
<HTML>
<HEAD>
<TITLE> Styles Page 3</TITLE>
<STYLE>
<!--
H1 {font-size: 20 pt;
line-height: 22 pt;
color: blue;
text-align: left}
BODY {font-family: "Arial";
color: gray;
font-size: 12pt;
line-height: 14 pt;
background: white}
.indent {text-indent: 1.25 cm;
margin-top: -.50 cm;}
-->
</STYLE>
</HEAD>
<BODY>
<H1>Heading</H1>
<P CLASS = indent>Lorem ipsum dolor sit amet... </P>
<P CLASS= indent>Lorem ipsum dolor sit amet... </P>
</BODY>
</HTML>
HTML Source Box #4 (figure 3)
<HTML>
<HEAD>
<TITLE> Styles Page 4</TITLE>
<STYLE>
<!--
H1 {font-size: 20 pt;
line-height: 18 pt}
BODY {font-family: "Arial";
color: gray;
font-size: 12 pt;
line-height: 14 pt;
background: white}
.left {margin-left: 10%;
margin-right: 40%;
margin-top: -10 pt;
color: maroon;
text-align: right}
.right {margin-left: 30%;
margin-right: 10%;
margin-top: -10 pt;
text-align: left}
-->
</STYLE>
</HEAD>
<BODY>
<H1 CLASS = left>Heading</H1>
<P CLASS = left>Lorem ipsum dolor sit amet...</P>
<P CLASS = right> Duis autem vel eum iriure dolor... </P>
<P CLASS = left>Lorem ipsum dolor sit amet... </P>
<P CLASS = right> Duis autem vel eum iriure dolor... </P>
</BODY>
</HTML>
Breakout box
Naming Colors
Sixteen colors can be referred to by name rather than their hexadecimal RGB values. These
are the colors by name and their respective RGB values:
black 000000
gray 808080
silver C0C0C0
white FFFFFF
navy 000080
blue 0000FF
aqua 00FFFF
green 008000
olive 808000
lime 00FF00
teal 008080
red FF0000
fuchsia FF00FF
purple 800080
maroon 800000
yellow FFFF00