HTML Text
HTML Text
<HEAD>
These tags enclose the Head part of the document
</HEAD>
<TITLE>
These tags enclose the title of the document. This text appears in the title bar in the browser and on the
bookmark list if someone bookmarks your web page.
</TITLE>
Sample Structure of a Web Site
<HTML>
<HEAD>
<TITLE> John Q. Public's Web Page </TITLE>
</HEAD>
<BODY>
This is John Public's Webpage!
</BODY>
</HTML>
HTML Formatting Elements
Formatting elements were designed to display special types of text:
► <b> - Bold text
► <strong> - Important text
► <i> - Italic text
► <em> - Emphasized text
► <mark> - Marked text
► <small> - Smaller text
► <del> - Deleted text
► <ins> - Inserted text
► <sub> - Subscript text
► <sup> - Superscript text
Header Tags
Header Tags -- Used for marking sections and subsections in a document.
Tag Result
Example: text a
<p>text a</p>
<p>text b</p> text b
<br>text c
<br>text d text c
text d
Horizontal Rule
The <HR> tag puts a graphical line across the page.
Ex: