Here are the Download links:
<!DOCTYPE html>
<html>
<head>
<!-- Meta-data goes here -->
</head>
<body>
<!-- Content of the page goes here -->
</body>
</html><!DOCTYPE html><html><head><body><starttag> Content goes here </endtag>An HTML element is defined by a start/opening tag, some content, and an end/closing tag:
HTML tags are the keywords on a web page that define how your web browser must format and display your web page.
<h1> This is a Heading Element </h1>
<p> This is a Paragraph element </p>
<br>
<!-- Used to create a new line -->
<hr>
<!-- Used to create a horizontal
line on the webpage -->
<title> Hello World </title>
<p> Hello World </p>
<h1> Heading Level 1 </h1> <!-- The Biggest -->
<h2> Heading Level 2 </h2>
<h3> Heading Level 3 </h3>
<h4> Heading Level 4 </h4>
<h5> Heading Level 5 </h5>
<h6> Heading Level 6 </h6> <!-- The Smallest -->
Used to represent headings on a webpage
Ordered Lists
<ol>
<li> Prepare the frying pan </li>
<li> Pour some oil on the frying pan </li>
<li> Whisk the eggs and pour on the pan </li>
<li> Fry the omlete and until ready </li>
<li> Serve the omlete on the plata </li>
</ol>Unordered List
<ul>
<li> Play with Messi and Ronald </li>
<li> Be the president </li>
<li> Go to heaven </li>
<li> Have a holiday in Silicon valley </li>
<li> Meet Elon Musk at Space X </li>
</ul><img src="image.jpg" alt="Image">HTML attributes provide additional information about HTML elements.
They are used to modify the behavior or appearance of an element.
Placed inside the opening tag of an HTML element and consist of a name and a value.