xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Project</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first HTML project. I am excited to learn and create more!</p>
<h2>About Me</h2>
<ul>
<li>Name: John Doe</li>
<li>Age: 25</li>
<li>Occupation: Student</li>
</ul>
<h2>My Hobbies</h2>
<ol>
<li>Reading</li>
<li>Coding</li>
<li>Playing Guitar</li>
</ol>
<h2>Contact Me</h2>
<p>Email: john.doe@example.com</p>
<footer>
<p>© 2022 John Doe</p>
</footer>
</body>
</html>