-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (45 loc) · 1.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css" />
<title>My Cozy Home</title>
</head>
<body>
<div class="container">
<header class="logo">
<div class="logoText">
<h1>MyCozy</h1>
<h1 class="bold">Home</h1>
</div>
<nav>
<button class="menuBtn">
<img src="assets/icons/hamburger.svg" alt="Menu button" />
</button>
<div class="navMenu">
<a href="index.html"
><img src="assets/icons/home.svg" alt="home" />Home</a
>
<a href="cart.html"
><img src="assets/icons/cart.svg" alt="cart" />Cart</a
>
<a href="#"
><img src="assets/icons/profile.svg" alt="User" />Profile</a
>
</div>
</nav>
</header>
<div class="slogan">
<p>Explore <strong>vintage</strong> design with style</p>
</div>
<main class="listProducts">
<div id="cards"></div>
</main>
</div>
<script src="./node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script>
<script src="./js/products.js"></script>
<script src="./js/index.js"></script>
</body>
</html>