-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (91 loc) · 4.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | chai Home</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body class="body">
<nav>
<div class="title"><a href="index.html"><h1>CHAI HOME</h1></a></div>
<ul>
<div class="li">
<li class=""><a href="/index.html">Home</a></li>
<li class=""><a href="/page/products.html">Shop</a></li>
<li class=""><a href="/page/payment-card.html"><i class="fa-regular fa-credit-card"></i> Payment Card</a></li>
<li class=""><a href="/page/ssignUp.html"><i class="fa-solid fa-user"></i> Sign Up</a></li>
<li class="cartLogo"><i class="fa-solid fa-cart-shopping"></i> <span class="counter"> 0</span></li>
<li class="light"><i class="fa-regular fa-sun"></i></li>
<li class="dark"><i class="fa-solid fa-moon"></i></li>
</div>
</ul>
</nav>
<div class="active mycart" id="mycart">
<div class="closeshopping">
<i class="fa-solid fa-xmark"></i>
</div>
<h1>Your Cart</h1>
<ul class="listCart">Add to cart</ul>
<button class="buyBtn" onclick="location.href='payment-card.html'">BUY <div class="total">0</div>₪</button>
</div>
<div class="home">
<img class="start_page" src="image/b79662_6e539a6b2d8546479708a7376c70f165~mv2.webp">
<div class="title_page">
<h1> ORGANIZING MATTERS!</h1>
<h3>We make it happen.
</h3>
</div>
<div class="products">
<div>
<img src="image/Artistic paintings4.jpg">
<h2>Artistic Paintings</h2>
<a href="page/products.html" class="show-button">Show</a>
</div>
<div>
<img src="image/candles1.png">
<h2>Candles</h2>
<a href="page/products.html" class="show-button">Show</a>
</div>
<div>
<img src="image/cup11.jpeg">
<h2>Cups</h2>
<a href="page/products.html" class="show-button">Show</a>
</div>
<div>
<img src="image/Plates11.jpg">
<h2>Plates</h2>
<a href="page/products.html" class="show-button">Show</a>
</div>
<div>
<img src="image/Vases11.jpg">
<h2>Vases</h2>
<a href="page/products.html" class="show-button">Show</a>
</div>
</div>
<nav class="tail_1">
<form class="tail">
<label>Subscribe</label>
<input type="email" placeholder="Email Addres" class="submitInput">
<div class="error"></div>
<input type="Submit" value="submit" class="submit">
</form>
<div class="tail_nav">
<ul>
<li class="more1"><a href="">More</a></li>
<div class="sochal">
<li class="facebook1"><a href=""><i class="fa-brands fa-instagram"></i></a></li>
<li class="instagram1"><a href=""><i class="fa-brands fa-facebook"></i></a></li>
<li class="instagram1"><a href="https://www.pinterest.com/pin/1087830484987780988/"><i class="fa-brands fa-pinterest"></i></a></li>
</div>
</ul>
</div>
</nav>
</div>
<script src="main.js"></script>
</body>
</html>