Login
Search
Welcome to the iTechForums.
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
To register now click here.
Latest Threads
Advertisements
Forum Statistics
Threads:
Posts: 2
Members:
Number of Users Online:
Welcome to our newest member,
Reply
 
Thread Tools Display Modes
  #1  
Old 05-06-2008, 01:18 PM
D!@Nn@ D!@Nn@ is offline
Junior Member
 
Join Date: May 2008
Posts: 1
Default

What is a (CSS) Cascading Style Sheets and how do I make one???


Thank you so much for your help!! : D
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 05-06-2008, 01:20 PM
† Oh yeah † Oh yeah is offline
Junior Member
 
Join Date: May 2008
Posts: 5
Default

Cascading style sheets is just that, a styling sheet. HTML and CSS work together to style your website: font, color, background, position of divs, widths and heights, etc.

There are two ways to make your CSS work with your HTML: One is to write your CSS in between the head tags of your HTML file like this:

<html>
<head>
<title>How CSS works</title>

<style type="text/css">
body {background-image: url(Address of picture to be used)
}
p {color: green;
font-size: small;
font-family: arial;
}
</style>

</head>
<body>
<p>This text will appear small, green, and in arial.</p>
</body>
</html>

Another way is to link your HTML file to a separate CSS file.

<html>
<head>
<title>How CSS works</title>

<link type="text/css" rel="stylesheet" href="URL to CSS file" />

</head>
<body>
body content
</body>
</html>

This website should help you understand CSS a little better and maybe even teach you how to use it.

http://www.utexas.edu/learn/css/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Your Ad Here

All times are GMT. The time now is 04:46 PM.