-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwishlist.html
More file actions
77 lines (70 loc) · 2.74 KB
/
wishlist.html
File metadata and controls
77 lines (70 loc) · 2.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="wishlist.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<title>wishlist</title>
</head>
<body>
<!-- header section -->
<header>
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#home" class="logo">FLOWER<span style="color: red;">.</span></a>
<nav class="navbar">
<a href="home.html">Home</a>
<a href="home.html#about">About</a>
<a href="#product">Shop</a>
<a href="home.html#product">Product</a>
<a href="#contact">Contact</a>
</nav>
<div class="icons">
<a href="wishlist.html" class="fas fa-heart"></a>
<a href="#" class="fas fa-shopping-cart"></a>
<a href="Login.html" class="fas fa-user"></a>
</div>
</header>
<!-- header section ends -->
<!-- wishlist section starts -->
<div class="wishlist-header" id="wishlist-header">
<h1>My <span style="color: palevioletred;">Wishlist</span></h1>
<!-- <a href="shop.html" class="back">← Back to Shop</a> -->
</div>
<section class="wishlist-container" id="wishlist-container">
</section>
<script src="wishlist.js"></script>
<!-- wishlist section ends -->
<!-- footer section starts -->
<section class="footer" id="contact">
<div class="box-container">
<div class="box">
<h3>Quick links</h3>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#product">Product</a>
<a href="#contact">Contact</a>
</div>
<div class="box">
<h3>Extra links</h3>
<a href="Login.html">My Accounts</a>
<a href="#my_order">My Orders</a>
<a href="#wishlist-header">My Favorites</a>
</div>
<div class="box">
<h3>Contact Info</h3>
<ul>
<a href="number">+91 208098908</a>
<a href="email">Flower_web@gmail.com</a>
<a href="https://www.google.com/maps?q=Coimbatore,+Tamil+Nadu" target="_blank">Coimbatore, Tamil Nadu</a>
</ul>
</div>
</div>
<div class="credit">
© Created by <span style="color:red">Dishitha</span> All Right Reserved.
</div>
</section>
<!-- footer section ends -->
</body>
</html>