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.
Reply
Grow Your Business with Effective Website Design and SEO
Use experience and skills of a reliable SEO and a web designer I trust to get more sales from your website.
Great Web Design and SEO Services
Use experience and skills of a reliable SEO and a web designer I trust to get more sales from your website.
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.