You can paste CSS directly in your html page. Although it does not have to be placed in between the header tags, it usually is. Below is an example that redefines the HTML?s h1 tag:
<head>
<title>Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
h1 {
font-family: "Times New Roman", Times, serif;
font-size: 14px; color: #CC00FF;
}
-->
</style>
</head>
The highlighted section is your CSS. Notice that it begins and ends with HTML's <style> tag.
Sean Buscay
www.christian-web-masters.comSean Buscay is on a mission to CREATE, ADVANCE, and EXPOUND faith in JESUS using web technology. He is the owner of Christian-Web-Masters.com .