1. The <html> opening tag is used to declare the start of the webpage.
2. The opening <body> tag.
3. The <img> tag defines an image in an HTML page. The <img> tag has two required attributes: src and alt. We will be using src to add a picture of a lion to the webpage.
4. Closing </body> is used to close the opening <body> tag on line 2.
5. The HTML closing/end tag </html> declares the end of the document. Once you are done you will see the webpage you created.