HTM02


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

      HTML uses tags. HTML tags convert Web page design into an actual Web page that can be viewed in a browser.
HTML tags surround page content to format it. Browsers render HTML tags and display their results. The generic format of an HTML tag is:

! <TAG> tells the browser to do something.
! ATTRIBUTE goes inside the <TAG> and tells the browser how to do it.


..Back to the top..




OUTPUT:

HTM02. Title that summarizes the document�s content

All the tags, attributes, and information in the document body go here.


..Back to the top..




SOURCE CODE:




<HTML>
<HEAD>
<TITLE>HTM02. Title that summarizes the document�s content</TITLE>
</HEAD>
<BODY>
All the tags, attributes, and information in the document body go here.
</BODY>
</HTML>


..Back to the top..