styles

S

Sam

hi, i am using a dwt for my site. i would like to use all
verdana 10 pt font for my site, how do i go about doing
this? do i have to make a style for the dwt, or for each
individual page that it is atached to?


thank you,
Sam
 
J

Jim Buyens

You can put the style in the <head> section of the DWT
template page. For example:

<head>
<style>
body {font-family: Verdana; font-size: 10pt; }
</style>
</head>

Or, better yet, define all your styles in a .css file, and
then link that file to the DWT template page.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Top