scripter73
Programmer
Hi,
I have the following style sheet code. I'd like to make my maroon text within my table bold.
I've already specified the font-weight = bold. What else do I need to do?
/* Make all body text maroon-colored 12-point Verdana with 16-point
vertical spacing between lines of text and 10-point margins. Use
color as the background.
*/
body {font-size: 10pt;
font-family: "Verdana, Arial";
font-weight: bold;
color: #660000;
background:silver;
}
/* Make headings Verdana bold with generous line spacing. If user
doesn't have Verdana, use Arial.
*/
h1 {font: 20pt "Verdana, Arial";
font-weight: bold;
line-height: 30 pt;
}
/* Don't underline links, and make all links red. Make links flash
black when activated.
*/
a:{text-decoration: underlined;}
a:link {color:#083194;font-size:10pt;}
a:visited {color:#6699CC;font-size:10pt;}
a:active{color:#6699FF;font-size:10pt;}
p {font-size: 8pt;
font-family: "Verdana, Arial";
font: italic;
}
My page is on the following link:
Thanks in advance,
scripter73
I have the following style sheet code. I'd like to make my maroon text within my table bold.
I've already specified the font-weight = bold. What else do I need to do?
/* Make all body text maroon-colored 12-point Verdana with 16-point
vertical spacing between lines of text and 10-point margins. Use
color as the background.
*/
body {font-size: 10pt;
font-family: "Verdana, Arial";
font-weight: bold;
color: #660000;
background:silver;
}
/* Make headings Verdana bold with generous line spacing. If user
doesn't have Verdana, use Arial.
*/
h1 {font: 20pt "Verdana, Arial";
font-weight: bold;
line-height: 30 pt;
}
/* Don't underline links, and make all links red. Make links flash
black when activated.
*/
a:{text-decoration: underlined;}
a:link {color:#083194;font-size:10pt;}
a:visited {color:#6699CC;font-size:10pt;}
a:active{color:#6699FF;font-size:10pt;}
p {font-size: 8pt;
font-family: "Verdana, Arial";
font: italic;
}
My page is on the following link:
Thanks in advance,
scripter73