- Use 12 Giant Lists of Social Sites to Save Time and Get Traffic
- Share Your Ideas, Write Posts and Do It Now
- What I Do, When not Improving the Web
- Follow Fundamental Rules of Internet Marketing to Build Successful Business (Part 1)
- Microsoft Live.com Plays Referrer Stats Games and Ruins Your AdSense Income
- What Makes the Community Sites Different?
- 3 Solid Reasons to Charge Fairly for Your Web Services
- Use Words on Your Site Correctly: The Complete Guide
- Do You Use Your Own Knowledge for Yourself?
- How do You Use Your Power Account?
The only option is the
The only option is the Cascading Style Sheets.
The external CSS file would contain this:
h1 {font-size:10pt; font-family:verdana,helvetica,arial,sans-serif; font-weight:normal;}
The inline styles would look like this:
(h1 style="font-size:10pt; font-family:verdana,helvetica,arial,sans-serif; font-weight:normal;") - replace () with <>.
Technically, there's a shorter form of "h1 {font: normal 10pt Verdana Artial sans-serif}", but it only works if all three attributes (weight, size, family) are specified, as far as I remember.
You can also specify the color (so the font trinity might actually be "color,size, family"). Check out http://www.w3schools.com/css/default.asp for more CSS goodiness.