You might have wanted to add more to the file, and add comments on what each element does. It's good to do so especially if you are trying to make a "neewb" guide.
/* "body" assigns the base style of the page, the defaults */
body
{
background-color:#ffffff; /* The background color of the page. */
color:#000000; /* The font color */
font-family:arial,sans-serif; /* The font's face */
font-size:14px; /* the font's size */
}
/* This overwrites the body blocks value, so everything within will be formatted like this: */
h1
{
color:#3e6f69;
font-size:18px
font-family: verdana,arial,sans-serif;
font-weight:bold; /* font-weight changes its "weight" either bold, italics, underline, strike, etc. */
}
/* The following lines are the same as the h1 and body tag, except they are all on one line. return strokes don't matter in css. However you may want to take the time to put them in so that you can more easily read your code */
h2 {color:#3e6f69; font-size: 16px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h3 {color:#3e6f69; font-size:14px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h4 {color:#3e6f69; font-size:12px; font-family: verdana,arial,sans-serif; font-weight:bold;}
Next time i will add some comments in it so then people can understand more. i know how a newbie will feel if he dont know anything about CSS and how can he use that file. so whenver i am posting anything i am always posting it through the prospective of a newbie. i know these days people just want to submit the code and for a new person he dont know what to do ? how to upload? and all that stuff/.
Sorry about that, i can't belive I forgot to put the code tag in.
/* "body" assigns the base style of the page, the defaults */
body { background-color:#ffffff; /* The background color of the page. */ color:#000000; /* The font color */ font-family:arial,sans-serif; /* The font's face */ font-size:14px; /* the font's size */ }
/* This overwrites the body blocks value, so everything within
will be formatted like this: */
h1 { color:#3e6f69; font-size:18px; font-family: verdana,arial,sans-serif; font-weight:bold; /* font-weight changes its "weight" either bold, italics, underline, strike, etc. */ }
/* The following lines are the same as the h1 and body tag, except they are all on one line. return strokes don't matter in css. However you may want to take the time to put them in so that you can more easily read your code */
h2 {color:#3e6f69; font-size: 16px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h3 {color:#3e6f69; font-size:14px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h4 {color:#3e6f69; font-size:12px; font-family: verdana,arial,sans-serif; font-weight:bold;}
body
{
background-color:#ffffff; /* The background color of the page. */
color:#000000; /* The font color */
font-family:arial,sans-serif; /* The font's face */
font-size:14px; /* the font's size */
}
/* This overwrites the body blocks value, so everything within
will be formatted like this: */
h1
{
color:#3e6f69;
font-size:18px;
font-family: verdana,arial,sans-serif;
font-weight:bold; /* font-weight changes its "weight" either bold, italics, underline, strike, etc. */
}
/* The following lines are the same as the h1 and body tag, except they are all on one line. return strokes don't matter in css. However you may want to take the time to put them in so that you can more easily read your code */
h2 {color:#3e6f69; font-size: 16px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h3 {color:#3e6f69; font-size:14px; font-family: verdana,arial,sans-serif; font-weight:bold;}
h4 {color:#3e6f69; font-size:12px; font-family: verdana,arial,sans-serif; font-weight:bold;}