A basic webpage structure might look like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Webpage</title>
</head>
<body>
<header>
<h1>Welcome to My First Webpage</h1>
</header>
<section>
<h2>About Me</h2>
<p>This is a short paragraph about me.</p>
</section>
<section>
<h2>My Hobbies</h2>
<ul>
<li>Reading</li>
<li>Coding</li>
<li>Gaming</li>
</ul>
</section>
<footer>
<p>Contact me at <a href="mailto:someone@example.com">someone@example.com</a></p>
</footer>
</body>
</html>