what you put between <title></title> will display at the top of the browser (not in the body of the page). is that what you want? for example, this message's <title> is "Displaying a script title - Tek-Tips - Microsoft Internet Explorer" (if you're using IE, that is)
if you're looking for a header in your page, then you just add it in using standard HTML with whatever font styles etc., such as:
<p class="header">This Is My Page Header</p>
Or
<H1>This is Also my Page Header</H1>
is that what you're looking for? if you need more help with that, check out the HTML/CSS forum....
%-)