CSS TEXT STYLE SHEET
2
Hi. i found this css file very useful for all the newbies who use frontpage2003 text. Just try this css code and specially for color text.
(Explanation on how to upload a css file in frontpage for newbies)
assuming that you already have index.html and you have some text in it describing also.
in frontpage open file new and then delete all the tagson the page and just copy and paste the code which i have posted. save the page as a .css file. after that go to your index page or any other page you would like to link with this css file. in the Index page go to format and then style sheet links and then click on add and find the .css file and click on and select for all pages or just for the index page and then click ok. have fu
(Explanation on how to upload a css file in frontpage for newbies)
assuming that you already have index.html and you have some text in it describing also.
in frontpage open file new and then delete all the tagson the page and just copy and paste the code which i have posted. save the page as a .css file. after that go to your index page or any other page you would like to link with this css file. in the Index page go to format and then style sheet links and then click on add and find the .css file and click on and select for all pages or just for the index page and then click ok. have fu
body {background-color:#ffffff;
color:#000000;
font-family:arial,sans-serif;
font-size:14px;}
h1 {color:#3e6f69; font:18px verdana,arial,sans-serif; font-weight:bold;}
h2 {color:#3e6f69; font:16px verdana,arial,sans-serif; font-weight:bold;}
h3 {color:#3e6f69; font:14px verdana,arial,sans-serif; font-weight:bold;}
h4 {color:#3e6f69; font:12px 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;}