4. Each page should contain at least 15 unique HTML elements. You will need to add more content to reach that
<!DOCTYPE html>
<html>
<head>
<title>Contact me</title>
</head>
<body>
<!--Added main tag-->
<main>
<!--Added nav tag-->
<nav>
<a href="home.html">Home</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
</nav>
<h1>Contact ME</h1>
<span>photo of me Joe Mc</span>
<picture>
<source media="(min-width:650px)" srcset="me1-650.jpg">
<source media="(min-width:465px)" srcset="me1-465.jpg">
<img src="me1.jpg" alt="lake" style="width:auto;">
</picture>
<p>You can contact me through : </p>
<div>
<ul>
<li>Email - 332boyman@gmail.com</li>
<li>Phone - (802)3730290</li>
</ul>
<footer>
<p>Author: Josiah McSweeney<br>
<!--Added footer tag-->
<footer>
<p>Copyright Reserved</p>
</div>
</footer>
</body>
</html>
Step by step
Solved in 3 steps