<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>An Example HTML Document</title>
  <link rel="stylesheet" href="ex-stylesheet.css" />
 </head>
 <body>
  <div class="section">
   <h2> 1.2 An Example XHTML Document </h2>
    <p>XHTML, and its predecessor language HTML, are just
    markup languages designed for use on the Web. They both use 
    tags that are written using regular printable characters.
    Indeed, the two languages are nearly identical--
    <a href="chapter2.html">Chapter 2</a>
    looks at them, and their differences, in more detail.
    </p>
    <img src="weird-icon.gif" height="110" width="110"
       alt="Weird Icon -- just for show" align="right" />
    <p>
    To illustrate how these languages work, we will start with 
    a simple example HTML (not XHTML) document, shown in Figure 
    ... omitted content ...
    example as an XHTML document to help highlight the differences 
    between HTML and XHTML. 
    </p>
    <div class="tip">
     <h3> TIP: Differences between XHTML and HTML </h3>
     <p> The rules for writing correct XHTML and HTML documents 
       are slightly different, and are outlined in more 
     ... omitted content ...
     treated as HTML. 
     </p>
    </div>
  </div>
</body></html>

