CSS Formatting by AdrianIn this tutorial I will show you how easy it is to format tables/divs, text and input boxes with pure CSS! At the end of each section I will show you how to apply all these wonderful changes to your text/table etc.
Ok, first off. Here is how to put your CSS on a page, there are two ways.
The first is this:CODE
<html>
<head>
<title>CSS Formatting</title>
<style type=text/css>
.my_first_style {
font-family:Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<span class=my_first_style>Your Text with my_first_style</span>
</body>
</html>
Basically, you place the CSS between the two