DOCTYPE html: information for the browser about the nature of the code
<html> </html> : html
head
Page Title (at the top of the nav)
<body> </body> : body (content of the page)
paragraph
title on the page
header
footer: header at the bottom
Example of comment: Comment in the code
<br> : line break
<a> The site </a> : link
example : link redirected to a page
web
<a href='[Link] target='_blank'> example </a> : link
redirect but open in another tab
create a section
<a href='#section1'> to section 1 </a>: link to section 1
<img src='[Link]'>: displays an image from the source folder
shows an image and adds a
description
<img src='images/[Link]'> : displays an image from a subfolder
<img src='[Link]'> : displays an image of a website
<a href='[Link] target='_blank'> <img src='[Link]'> </a>
Display an image and assign it to redirect to a link when clicked.