top of page


<!DOCTYPE html>
<html>

<head>

<title>My First HTML Document</title>

</head>

<body>

<h1>My First Document</h1>

<p>This document is designed to teach me how to format a web page.  I can keep typing and it will keep all of the info between the paragraph tags together.</p>

<table>

<tr>

<td style="font-size:300%;color:red">Column 1</td>
<td>Column 2</td>
<td>Column 3</td>

</tr>

<tr>

<td><a href="https://en.wikipedia.org/wiki/Dog">dog</a></td>
<td><a href="https://en.wikipedia.org/wiki/Cat">cat</a></td>
<td><a href="https://en.wikipedia.org/wiki/Bird">bird</a></td>

</tr>

<tr>

<td style="color:Tomato">strawberry</td>
<td style="color:Brown">chocolate</td>
<td style="color:yellow">vanilla</td>

</tr>
<tr>

<td><img src="https://newsforkids.net/wp-content/uploads/2018/02/1050px-DemocraticLogo.svg_-500x488.png" alt="Democrat Logo" width=20 height=20>Democrat</td>

<td><img src="https://newsforkids.net/wp-content/uploads/2018/02/1179px-Republicanlogo.svg_.png" alt="Republican Logo" width=20 height=20>Republican</td>

<td><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Libertarian_Party_Porcupine_%28USA%29.svg/1200px-Libertarian_Party_Porcupine_%28USA%29.svg.png" alt="Libertarian Logo" width=20 height=20>Libertarian</td>

</tr>

</table>

</body>

</html>

bottom of page