Slide 15 of 21

Internal Style Sheet Example

<html>
<head>
........
<style type="text/css">
BODY { background-color: white; font-family: sans-serif }
CAPTION { font-size: large; font-weight: bold }
H1 { font-family: helvetica; color: blue }
H2 { font-family: helvetica; color: blue }
H3 { font-family: helvetica; color: blue }
H4 { margin: 10pt; font-family: helvetica; color: blue }
HR { height: 6px; background-color: salmon; color: salmon }
HR.sep { height: 1px; width: 95%}
.add {color: green; font-weight: bold;}
.center {text-align: center}
.code { font-family: monospace }
</style>
..........
</head>
<body>
<h1 class="center">Introduction</h1>
<hr class="sep"/>
........
</body>
</html>