<html>
<head>
<title>title of the page</title>
<meta charset="utf-8">
</head>
<body>
this is my first page. <b>this text is bold</b>
</body>
</html><p>This is a paragraph</p>
<p>This is another paragraph</p> <p>This <br> is a para<br>graph with line breaks</p> <!-- This is a comment --><a href="url">Text to be displayed</a>
<a href="http://www.microsoft.com">Visit Microsoft!</a><a href="http://www.microsoft.com" target="_blank">Visit Microsoft!</a>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table><ul>
<li>Coffee</li>
<li>Milk</li>
</ul><ol>
<li>Coffee</li>
<li>Milk</li>
</ol><form>
First name: <input type="text" name="firstname">
<br />
Last name: <input type="text" name="lastname">
</form><img src="url"><img src="boat.gif" alt="Big Boat">
<head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head>
<head>
<style type="text/css">
body {
background-color: red;
}
p {
margin-left: 20px;
}
</style>
</head><p style="color: red; margin-left: 20px">
This is a paragraph
</p><meta name="description" content="Web tutorial"><meta name="keywords" content="HTML, JavaScript, VBScript"><html>
<head></head>
<body>
<script type="text/javascript">
document.write("Hello World!")
</script>
</body>
</html>