Untitled
unknown
plain_text
2 years ago
717 B
10
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>My Shopping Website</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<!-- Product Blocks Go Here -->
</main>
<footer>
<p>© 2023 My Shopping Website</p>
</footer>
<script src="script.js"></script>
</body>
</html>
Editor is loading...