<html> <head> <title>welcome</title> </head> <body> </body> </html>
HTML></HTML>
This
element tells browsers that the file is a HTML document. Each HTML document starts with the tag
<HTML>.
This tag should be first thing in the document. It has an associate closing tag
</HTML>
which must be the last tag in the file.
The
head contains important information about the document.
The
title tag is an important tag. It is used to display a title on the top of your
browser window. Both the opening and the closing tags go between the head tags.
<BODY></BODY>
The
Body Tag is used to identify the start of the main portion of your webpage.
Between <BODY> </BODY> tags you will place all images, links, text,
paragraphs, and forms. We will explain each tag that is used within the body of
theHTML file.
0 comments:
Post a Comment