-
Notifications
You must be signed in to change notification settings - Fork 1
/
voucher.html
95 lines (89 loc) · 4.01 KB
/
voucher.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
<!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="./Style/append.css">
<link rel="stylesheet" href="./Style/voucher.css">
<link rel="stylesheet" href="./Style/footer.css">
<link rel="stylesheet" href="./Style/nav1.css">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<title>E-Gift Voucher</title>
</head>
<body>
<div id="main_export"> </div>
<div id="nav1"></div>
<div id="main">
<div id="left">
<diV id="filter">
<span>FILTER
<span id="clearall" style="margin-left:42px; color: greenyellow; font-size: small;">CLEAR ALL</span>
</span>
<hr>
<div id="gift_hamper">
<p><a href="gift.html">Gift Hampers</a></p>
<p><a href="voucher.html">E-Gift Voucher</a></p>
<!-- <p><a href="all_hamper.html">All Hampers</a></p> -->
</div>
<hr>
<div id="brand">
<h4>Brands</h4>
<input type="checkbox" id="Assorted" name="Assorted" value="Assorted">
<label for="Assorted">Assorted</label><br>
<input type="checkbox" id="Nature_Basket" name="Nature Basket" value="Nature Basket">
<label for="Nature Basket">Nature Basket</label>
</div>
</diV>
<div id="form">
<h5 style="text-align: center; ">CONTACT US FOR CUSTOMIZED GIFTING SOLUTIONS</h5>
<form>
<span><select name="gender">
<option value="Mr">Mr.</option>
<option value="Mrs">Mrs.</option>
</select>
<input type="text" placeholder="First Name" style="width: 60%;">*
</span><br><br>
<input type="text" placeholder="Last Name">*<br><br>
<input type="email" placeholder="Email Id">*<br><br>
<input type="number" placeholder="Mobile No.">*<br><br>
<select name="location" id="location" style="width: 93%;">
<option value="mumbai">Mumbai</option>
<option value="Pune">Pune</option>
<option value="Bangalore">Bangalore</option>
<option value="Kolkata">Kolkata</option>
</select>*<br><br>
<input type="text" placeholder="Enquiry" style="height: 100px;"><br><br>
<input type="submit" id="submit">
</form>
</div>
</div>
<div id="right">
<span style="font-size:small;"> <a href="" style="color: gray;">Home</a> > <a href="gift.html"
style="color: gray;">Gift Hampers</a> > <a href="" style="color: gray;">E-Gift Voucher</a></span>
<div id="right_gifthamper">
<div id="right_gifthamper_left">
<div>
<h4>GIFT HAMPERS</h4>
</div>
<div style="margin-top: 12px; color: gray;font-size:medium;">
<p>6 Products</p>
</div>
</div>
<select name="relevance" id="relevance" style="border: hidden white;" onchange="sorted()">
<option value="relevance">relevance</option>
<option value="lth">Low to high price</option>
<option value="htl">High to low price</option>
</select>
</div>
<hr>
<h4>Explore</h4>
<hr>
<div id="append"></div>
</div>
</div>
<footer id="foot"></footer>
</body>
</html>
<script type="module" src="./Script/voucher.js">
</script>