A homepage for a website (like a company or product).
Headings, sections, navigation links, images.
Example:
<!DOCTYPE html>
<html>
<head>
<title>My Startup</title>
</head>
<body>
<header>
<h1>Welcome to My Startup</h1>
<nav>
<a href="#">Home</a> |
<a href="#">About</a> |
<a href="#">Contact</a>
</nav>
</header>
<section>
<h2>Our Mission</h2>
<p>We build awesome web apps for everyone!</p>
<img src="startup.jpg" alt="Startup" width="300">
</section>
<footer>
<p>© 2025 My Startup</p>
</footer>
</body>
</html>
Leave a Reply