Set up an HTML page that uses some of the tags that you know from Exercise 1.
View it with the Chrome or Edge browser. Answer:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Exercise 5</title>
<meta charset="utf8">
</head>
<body>
<h1>Exercise 5</h1>
<p>This is a test paragraph.</p>
<h1>Cities of origin</h1>
<ol>
<li>Henderson, NE</li>
<li>Mundelein, IL</li>
<li>Skokie, IL</li>
<li>Oak Park, IL</li>
</ol>
<h1>Numbers in Different Languages</h1>
<table>
<tr>
<th>English</th>
<th>French</th>
<th>German</th>
</tr>
<tr>
<td>One</td>
<td>Un</td>
<td>Eins</td>
</tr>
<tr>
<td>Two</td>
<td>Deux</td>
<td>Zwei</td>
</tr>
<tr>
<td>Three</td>
<td>Trois</td>
<td>Drei</td>
</tr>
<tr>
<td>Four</td>
<td>Quatre</td>
<td>Vier</td>
</tr>
<tr>
<td>Five</td>
<td>Cinq</td>
<td>Fünf</td>
</tr>
</table>
<h1>Image of Puppy</h1>
<img src="images/puppy.jpg">
</body>
</html>
Here is the HTML page index.html, defined by the
preceding source code.