Website Design, Development and Consulting
In: Uncategorized
5 Jan 2009Here is what we covered our first night:
External Stylesheet:
<link href=”external.css” rel=”stylesheet” type=”text/css” />
Inline CSS:
<p style=”color:blue; font-size:30px;”>This is inline css</p>
Internal CSS: (this goes in between the head tags)
<style type=”text/css”>
p { color:red; }
body {
background-color:#CC0000;
color:black;
font-family:”Courier New”, Courier, monospace;
}
</style>