Header Tags

S

Steve

How do I add a header tag to my HTML? Somebody told me
<H1>, but can somebody give me an example and tell me
where it should be placed on the page?

Thanks,
Steve
 
N

news

You should be able to just highlight the text and dropdown the Style combo
and select Heading 1 (or whatever level you want), otherwise in HTML you
surround it with H1 tags i.e.

<H1>This is header 1</H1>
 
Top