juicedup77 0 Report post Posted September 10, 2004 Do you make your font style change? Share this post Link to post Share on other sites
kokushta 0 Report post Posted September 11, 2004 Do you make your font style change? <{POST_SNAPBACK}> I'm not sure if i get your question, but I do use one font style Verdana,Arial (same family fonts) In webpages it is good to keep one font style, size is another thing. Share this post Link to post Share on other sites
zarjay1405241470 0 Report post Posted September 12, 2004 With CSS, it's easy. <style type="text/css">p { font-family: verdana, arial, sans-serif; font-size: 12pt; font-style: italic; font-weight: bold; color: blue; }</style> You could also put combine it all together:<style type="text/css">p { font: italic bold 12pt verdana, arial, sans-serif; color: blue; }</style> Share this post Link to post Share on other sites
SinisterMinisterX 0 Report post Posted September 12, 2004 Whenever possible, using CSS as zarjay suggested is the way to go. But in the interest of full disclosure, there are two other ways to do it...1. <font> tags. I know a lot of people dislike these, but they can still be appropriate for those rare occurences when you want to alter one word in the middle of a sentence for some reason. More details on its usage here.2. <span> tags. With these, you can use CSS styles: <span style="font: italic bold 12pt verdana, arial, sans-serif; color: blue">Foobar</span>I'd personally recommend these instead of font tags. Share this post Link to post Share on other sites
Bierhelm 0 Report post Posted September 15, 2004 just use frontpage...I do... Share this post Link to post Share on other sites