| Web page: | Markup: |
Basic HTML Text FormattingThis 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:
|
<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 |
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 >>