-
The Basics
there seem to be a few ways to insert CSS into the head of a doc.
w3c say to do it this way:
<style type=”text/css”>
I’ve seen some people leave off the type=”text/css” but I am going to do it this way from now on.
Basic font stuff:
to mess around with the body and headings I’ll make some rules for them:
<style type=”text/css”> - (make sure the “text/css” goes red on smultron)
body {
font-family: times new roman, arial, sans serif;
color: red; (or I can put rgb(255,0,0) or something
font-size: 18pt;
background-color: blue;
font-weight: bold;
text-align: right;
and that’s all for now
Posted on March 28, 2009
blog comments powered by Disqus