Basic HTML Sample Page - Sheldon Brown
https://sheldonbrown.com/web_sample1.htmlMost HTML commands come in pairs: for example, "<H4>" marks the beginning of a size 4 heading, and "</H4>" marks the end of it. The closing command is always the same as the opening command, except for the addition of the "/". Modifiers are sometimes included along with the basic command, inside the opening command's < >.
HTML Basic Examples
https://www.w3schools.com/html/html_basic.aspHTML images are defined with the <img> tag. The source file ( src ), alternative text ( alt ), width, and height are provided as attributes: Example <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142"> Try it Yourself » How to View HTML Source? Have you ever seen a Web page and wondered "Hey! How did they do that?"