computergeek67
|
Text Colors and HeadersTo make this work, place this code under the "<head>" tag:
| Code: | <link rel="stylesheet"
type="text/css" href="ex1.css" />
<style type="text/css">
h2 {color: #0000ff}
</style> |
Then put this in the body:
| Code: | <h1>This header is 36 pt</h1>
<h2>This header is blue</h2> |
You should now have two headers. One black, one blue.
|