Structure of HTML
<html>
<head>
<title>Page title </title>
<head>
<body>
<h1>This is a heading </h1>
<p>This is a paragraph </p>
<p>This is another paragraph </p>
Six sizes of text:(only used in headings)
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
</br> (used for line breaks)
<strong> </strong>( used to make bold words)
To change the size of words in paragraphs:
<big> </big> (for big sized words)
<small> </small> (for small sized words)
We can use <hr> to put a horizontal line
We can adjust the width of the line by using <hr width "70%"> to make the line go
only 70% of the screen.
<a href="[Link] This is a link to dance
monkey lyrics
To add images <img src="[Link]
2f908a9a7a1b?ixlib=rb-
4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Z2FtaW5nJTIwc2V0dXB8ZW58MHx8MHx8&w=1000&q=80
"
To add a list we can use <li> at the start and </li> at the end
To add an unordered list we can use <ul> at the start and </ul> at the end
To divide the page into two parts we can use <div> at the start and </div> at the
end
To add a header we can use <header> at the start and </header> at the end
To add a footer we can use <footer> at the start and </footer> at the end