Spit_Me_Out
02-19-2007, 01:06 AM
Well I am fairly new to css. And i am making another website for the ```` of it. And i want to have my fonts and stuff all custom.
Like the font colors, link colors, font link size, and all that good stuff. Can someone please help me write something up? I don't someone to do it for, but just help me get the ball rolling.
Arwen
02-19-2007, 10:09 AM
First of all, make sure you read this page (http://www.lissaexplains.com/css.shtml), there are only 3 sections. :)
If you need help inserting the codes into your page, you can either do it by including an external stylesheet:
<html>
<head>
<title>My Site</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
blah blah
</body>
</html>
<link rel="stylesheet" type="text/css" href="style.css"> will include your stylesheet and style.css is your external stylesheet. To make an external stylesheet, make a new file >> put all the codes in it (make sure you don't unclude <style type="text/css"> and </style> tags in it) then save it as style.css
Another way is to add your stylesheet between the <head> tags, like this:
<html>
<head>
<title>My Site</title>
<style type="text/css">
body {
background-color: #000000;}
etc
etc
</style>
</head>
<body>
blah blah
</body>
</html>
I'd recommend to have a external slyesheet though, so you don't need to edit every page if you want to change your background color or something else. Hope this helps! :)
Spit_Me_Out
02-19-2007, 04:49 PM
Ok thanks. And i agree, external is alot easier.