View Single Post
  #7 (permalink)  
Old 11-26-2007, 07:19 AM
TechieGuy's Avatar
TechieGuy TechieGuy is offline
Super Moderator
 
Join Date: Jul 2007
Location: Canada
Posts: 1,172
TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)
Default

The HTML tag basically indicates that the markup language used in the document is HTML, and the Body indicates the actual content of the Web page.

When using the tags they would look like:

<html>
<head>
(specify any header information such as title, meta tags, and CSS files here)
</head>
<body>
(The actual content of the Web page should go here)
</body>
</html>
Reply With Quote