Basic Text Formatting

TOC

Web page:Markup:

Basic HTML Text Formatting



This document uses a few additional formatting tags. Although not a complex application of HTML, it is much more visually sophisticated than a typical Internet plain-text document. Compare this to the source code to see the html tags that are used.

This document contains:

  • an h3 header
  • some horizontal rules
  • several paragraphs
  • bold text
  • an unnumbered list
<html>

<head>
  <title>Basic HTML Text Formatting</title>
</head>

<body>

<hr />
<h3>Basic HTML Text Formatting</h3>
<hr />
<br />
<p>
This document uses a few additional 
formatting tags. Although not a complex
application of HTML, it is much more
visually sophisticated than a typical
Internet plain-text document. Compare
this to the source code to see the html
tags that are used. </p> <p> <ul> <li>This document contains:</li> <li></p></li> <li>an h3 header</li> <li>some horizontal rules</li> <li>several paragraphs</li> <li><strong>bold text</strong></li> <li>an unnumbered list</li> </ul> </body> </html>

Remember that all tags must be "closed" with a slash, "/". Notice in the markup source code above that the <hr /> and <br /> are also closed with a slash, even though there is only one single tag associated with these elements.

<< Minimal HTML Document Requirements | Index | HTML Lists >>