|
This is done within the <head> of the HTML document.
It will override external style sheets.
<head>
.....
<style type="text/css">
h1 { font-size: x-large; color: rgb(0, 0, 255); }
h2 { font-size: large; color: rgb(0, 255, 255); }
</style>
......
</head>
|