HTML stands for Hypertext Markup Language. In this case hyper- means "beyond or outside of" the text, because the original web pages were largely text. It works by a system of "tags", which identify the commands your browser uses to present a web page. This is what a tag looks like.
<hr>
It says "make a horizontal line", like this. It doesn't need a "closing tag".
We can dress it up a bit.
<hr width="45%" size="5" color="red">
Here is another example of a tag which doesn't require a closing tag.
<br>
It says "make a line break", a term from a time when teletype machines were used as computer printers. It's one of the most common tags used.
The tags below all use closing tags. The first one just says "center everything between the two tags".
<center></center>
This is in the center
The next one says make the text italic.
<i></i>
This is italic
These say make the text bold.
<b></b>
This is bold.
We can center the bold text.
<center><b></b></center>
This is bold and centered.
The next tags say "begin and end a paragraph".
<p></p>
The next two tags are very important because they provide links to other internet addresses. The first one says "go to mypicturesite.com, look in directory (folder) images and download image001.jpg to this page. The next one says "when the text here is clicked on, go to the home (main index) page of mypicturesite.com".
<img src="http://www.mypicturesite.com/images/image001.jpg">
<a href="http://www.mypicturesite.com">Click here.</a>
We can combine the two tags. Now they say "when I click on the picture downloaded to this page from mypicturesite.com take me to mypicturesite's home page".
<a href="http://www.mypicturesite.com"><img src="http://www.mypicturesite.com/images/image001.jpg"></a>
More paired tags.
Start and end a table.
<table></table>
Start and end a table row.
<tr></tr>
Start and end a table data cell.
<td></td>
Use this size, face and color of font.
<font size="4" face="verdana" color="red"></font>
This is Verdana, Size 4 Red.
Colors are usually specified by a number placed between the quotation marks, Red=#FF0000. Here is a chart
with the "safe" colors.
<><>
<><>
<><>