Posts: 8
Location: southern California
|
You can also setup a style instruction for headings using the class tag...
<style>
.pagetitle {font-family: arial black; font-size:18; font-weight:bold;}
.pagetext {font-family: arial; font-size:14; font-weight:normal;}
</style>
</head>
<body>
<p class="pagetitle">Home Loans...</p>
<p class="pagetext">The best interest rates...</p>
If you run into a special case in the body of your page...
<p style="font-style:italic; color:red;">Note: these interest rates apply only...</p>
|