Files
odin-landing-page/index.html
T
2025-02-08 19:16:09 +09:00

37 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<div class="content-wrap">
<div class="logo">HeaderLogo</div>
<div class="nav">
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</div>
</div>
</header>
<div class="hero">
<div class="content-wrap">
<div>
<h1>This is awesome</h1>
<p>This is an awesome website that I am developing.</p>
</div>
<div>
<img src="https://dev.toanphu.vn/wp-content/uploads/6-4-1000x667.jpg">
</div>
</div>
</div>
<div class="section1">Section 1</div>
<div class="section2">Section 2</div>
<footer class="footer">Footer</footer>
</body>
</html>