You are on page 1of 3

<!

DOCTYPE html>
<html>
<head>
<title> Demo Html </title>
</head>
<body>
<bg colour
<h2>Heading2</h2>
<P>This is a great paragraph</P>
<a href="http://wwww.facebook.com" target="_blank">Facebook</a>
<a href="mailto:reggie_newfriends@yahoo.com" target="_blank">Email
</a>
<!-- This is my comment -->
<ol><li>Carrot</li><li>Cabbage</li> <li>Banana</li><li>Mango</li></ol>
<ul><li>Carrot</li><li>Cabbage</li> <li>Banana</li><li>Mango</li></ul>
<img src="http://images2.fanpop.com/images/photos/8400000/cute-cats-cats-8477446-600-600.jpg"
alt="image of a cute cat"/>
<table>
<thead>

<tr><td>column1</td>
<td>column2</td></tr>
<tr><td>column1</td>
<td>column2</td></tr>

<tr>

<th>Table Header1</th>
<th>Table Header2</th>
</tr>
</thead>

<tr><td>column1</td>
<td>column2</td></tr>
<tr><td>column1</td>
<td>column2</td></tr>

<tbody></tbody>

<tfoot>
<tr>
<td>Table Footer1</td>
<td>Table Footer2</td>
</tr>
</tfoot>
</table>

<form>
<label>Name</label>
<input type="Text" />

<br><label>Email</label>

<input type="Text" />


</form>
</body>
</html>

You might also like