HTML Tags

 

<html> Open HTML tag for the top of the page.

<head>Open head

<title>HTML Tags</title>Title of the document.

</head>Close head

<body>Open the body of the document.

<p><font size="20" color="red">Font size is 5</font> Font color, size and text.

<p>Paragraph

</body>Close the body of the document.

</html>Ending HTML tag

<center>Center object.
<Body bgcolor="yellow">Change body color.
<br> Line break.
<table border="2"> Table.
<tr>
<td>Mark</td>
<td>Anthony</td>
<td>Peterson</td>
</tr>
</table>
Close table.
<a href="http://www.google.com">Google</a>
Link to other page.


</body>