Thread: h1 with title
View Single Post
Old 05-08-2008, 11:57 PM   #3 (permalink)
htmlbasictutor
Contributing Member
 
htmlbasictutor's Avatar
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 66
iTrader: 0 / 0%
htmlbasictutor is liked by many
The title tags go in the head section of your web page.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="Copyright" content="Your Copyright Notice" /> <title>Title of Web Page - which appears in the top of the browser</title> <meta name="Description" content="Your web page description" /> <meta name="Keywords" content="Your keywords" /> </head>
The H1 set of tags goes in the body of the web page.
Code:
<body> <h1>Title of the Web Page</h1> <p>Some text</p> </body> </html>
Does this answer your question?
__________________
HTML Basic Tutor
Web Page Mistakes
htmlbasictutor is offline   Reply With Quote