re-
VISION

PHOTOGRAPHY AND GRAPHICS BY JAY BOERSMA

WebworkBasic Text Formatting

Web Page:

Basic 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 Source Code:
<html>
<head>
<title>
Basic HTML Text Formatting
</title>
</head>

<body>

<hr>
<h3>
Basic Text Formatting</h3>
<hr>

<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>This document contains:</p>

<ul>
<li>
an h3 header
<li>
some horizontal rules
<li>
several paragraphs
<li><b>
bold text</b>
<li>
an unnumbered list
</ul>

</body>
</html>




<Previous | Webwork Table of Contents | Next>