Forum Moderators: open
Also, which is the best font to use for heading? I'd prefer the font to have more thickness in each alphabet and quite spread across ( meaning...spacing between the alphabets should be a bit more ). I'd be using the font size 4 for the headings.
Rest of my site, I am using verdana as the default font, but for the heading with font size 4, the thickness is quite less.
Thanks much again!
Eric Meyer's Color Blender is a very useful tool for these purposes.
Okay, i found that url.That indeed is a very useful one...gave me exact shades what tedster posted above. I'll sue it for my future requirements.
Nick_W :
I have something like this :
<div>
<font size=4>
My Heading
</font>
<font size=2>
Text a couple of lines
</font>
</div>
How do i use the class you mentioned in your post?
Thanks much
Cheers
1) Create a text file called mystyle.css
2) Copy and paste Nick's code into mystyle.css
.myheading { font: bold 1.5em arial,verdana,sans-serif; letter-spacing: .4em;
}
3) Upload the .css file to your root folder.
4) In the header of the html file write:
<!--css files-->
<link href="/mystyle.css" rel="stylesheet" type="text/css">
<!--end css files-->
5) Change your html page code to
<div class="myheading">
My Heading
</div>
<div class="mytext">
Text a couple of lines
</div>
6) By going back to mystyle.css, you can define a style for .mytext in the same way that a style has been defined for .myheading