Welcome Guest ( Log In | Register )

2 Pages V   1 2 >  
Reply to this topicStart new topic
> Css Formatting, Beginner - CSS
Adrian
post Jun 7 2005, 11:36 AM
Post #1


Addicted Dot
Group Icon
Group: Moderator
Posts: 15,965
Joined: 26-September 04
Member No.: 763





CSS Formatting by Adrian
In 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