PDA

View Full Version : <h1>tags


ezymoneyathome
01-09-2006, 09:50 AM
Hi everyone

Can anyone explain where to put <h1>tags on my site for example:

<head>
<h1>
</head>

Is this the correct position. also how about <h2> tags in the body.

Thanks in advance Kevin

Erik Geurts
01-09-2006, 10:15 AM
No, H1, H2, H3, go in the body of your page!

For the basic structure of a page in HTM, look at this example:

<html>
<head>
<title>page title</title>
{other head elements}
<head>
<body>
<h1>page title</h1>
<h2>sub title</h2>
<p>body text goes here</p>
</body>
</html>

H1 is shorthand for Heading 1.


See www.htmlhelp.com for more information.

Matthew
01-10-2006, 11:19 AM
I also recommend visiting www.w3schools.com/html/ for some great tutorials.