page must have the basic HTML document structure page must have at least 15 unique HTML elements page must include Navigation, Main, and Footer elements must use at least 2 images
an about me page example using just HTML no need for CSS
HTML Code:
<!DOCTYPE HTML>
<html>
<head>
<title>About me</title>
</head>
<body style="background-color:powderblue;">
<h1>About me page Example</h1>
<main>
<p>These are my accomplishments.</p>
<ul>
<li>Helping Topper and meritorious student</li>
<li>Influencer</li>
<li>Businessman</li>
</ul>
<div class="row">
<div class="column">
<article>
<h2>What do i do?</h2>
<p><b>Social media may help you interact with your consumers and learn what others are working in the industry. Social media may also be used for marketing, commercial freebies, and smartphone apps. Social networking may help your business acquire consumers, gather feedback from customers, and increase customer retention.</p>
</article>
</div>
<div class="column">
<picture>
<!--- Add image location on src attribute -->
<img src="image_path1.jpg" alt="" width="50" height="50">
</picture>
</div>
</div>
</main>
<h4>Image and Audio tags</h4>
<picture>
<!--- Add image location on src attribute -->
<img src="image_path2.jpg" alt="" width="50" height="50">
</picture>
<!--- Add audio location on src attribute -->
<audio controls autoplay>
<source src="audio1.ogg" type="audio/ogg">
<source src="audio2.mp3" type="audio/mp3">
</audio>
<!--- Add footer on webpage -->
<footer>
<p>Author: Bartleby Q&A portal</p>
<a href= "link">About Us</a>
</footer>
</body>
</html>
Step by step
Solved in 2 steps with 1 images