There are two main types of list in HTML 5, the unordered list <ul></ul> and ordered list <ol></ol>. Lists use list items <il></li> to seperate out the items in the list.
The <img> tag is used to add an image to a webpage. <img> uses attributes to descibe the image and its location.
<img src="egg.jpg" alt="A picture of a chocolate egg">
src – The value of this attribute is the full name of the image file, in this case egg.gif which is in the same directory as the html file.
alt – The value of this attribute is a description of the image. This is used in case the image fails to download or it can be read aloud by screen readers.
<h1> </h1> – Heading tag is used to signify a heading of type 1. The default style for this has it as the most important and therefore largest heading size with a leading and trailing line break (blank line).
<p></p> – Paragraph tag is used so show a paragraph of text. The default style for this has a line break appear after the text.
<br> – Break tag is used to insert a line break (new line).