-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwinter.html
121 lines (104 loc) · 3.34 KB
/
winter.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
<!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">
<title>Winter Collection</title>
<link rel="stylesheet" href="winter.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<header>
<section class="flex">
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo">CandyLight</a>
<nav class="navbar">
<a href="home.html">homepage</a>
<a href="products.html">products</a>
<a href="contact.html">contact</a>
<a href="about.html">about</a>
<a href="review.html">reviews</a>
</nav>
<div class="icons">
<div class="icon">
<a href="#" class="fas fa-heart"></a>
<div class="shopping">
<span class="quantity">0</span>
<a href="#" class="fas fa-shopping-cart"></a>
</div>
<a href="survey.html" class="fas fa-gift"></a>
</div>
</div>
</section>
</header>
<div class="banner-container">
<section class="banner" id="banner"></section>
</div>
<nav class="productnav">
<a href="bestseller.html">Best-Sellers</a>
<a href="products.html">All-Cake Collection</a>
<a href="winter.html">Winter Collection</a>
</nav>
<body class="">
<h2>.°˖✧ Winter Collection ✧˖°
</h2>
<div class="list">
</div>
<div class="card">
<h1>Cart</h1>
<ul class="listCard">
</ul>
<div class="form-popup" id="buy-form">
<form class="form-container">
<!-- Your form fields here -->
<button type="button" class="cancel" onclick="closeForm()">x</button>
<input type="text" name="name" placeholder="Enter your name" required>
<input type="email" name="email" placeholder="Enter your email" required>
<input type="text" name="adress" rows="3" placeholder="Enter your adress" required>
<input type="submit" value="Submit">
</form>
</div>
<div class="checkOut">
<div class="total">0</div>
<div class="closeShopping">Close</div>
<button id="buy-button">Buy now</button>
</div>
</div>
<script src="winter.js"></script>
<script src="myscript.js"></script>
</body>
<section class="footer">
<div class="footer-container">
<div class="box">
<h3>quick links</h3>
<a href="#">home</a>
<a href="#">about</a>
<a href="#">products</a>
<a href="#">review</a>
<a href="#">contact</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#">my account</a>
<a href="#">my order</a>
<a href="#">my favorite</a>
</div>
<div class="box">
<h3>where</h3>
<a href="#">Türkiye</a>
<a href="#">USA</a>
<a href="#">japan</a>
<a href="#">france</a>
</div>
<div class="box">
<h3>contact</h3>
<a href="#">+123-456-7890</a>
<a href="#">[email protected]</a>
<a href="#">Japan, Tokyo - 400104</a>
<img src="payment.png" alt="">
</div>
</div>
<div class="credit"><span>CandyLight</span> | all rights reserved <span id="clock"></span></div>
</section>
</html>