CSS tutorial



Day #1




Well, now that you have learned HTML (if you haven't, go here.) you know that using HTML is like painting the mona lisa with a paint roller. To get into the real finicky details, you need to use CSS (great for you control freaks.)


The first thing we need for CSS is the <style type="text/css"></style> elements, you need to remember to make these in the <head></head> tags. Then you can start detailing your <b></b> and anything else you want in the minutist detail. The first thing you need (we'll use <b> and <H1> for this example, but you can use any tag you want, YAY.) Okay, make this:

<html>
<head>
<style type="text/css">
B {color: blue};
H1 {color: pink};
</style>
</head>
<body>
<h1>CSS, the tool of web design gurus!</h1>
<b>amaze your friends, confuse your enemies</b>
</body>
</html>


View here