Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
717 B
2
Indexable
Never
<!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>&copy; 2023 My Shopping Website</p>
    </footer>
    <script src="script.js"></script>
</body>
</html>