forked from Alipakkr/Voyawander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
address.html
128 lines (121 loc) · 4.58 KB
/
address.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
127
128
<!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>Address</title>
<link rel="stylesheet" href="./address.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
</head>
<body>
<!-- navbar -->
<div class="head2">
<div class="logo"><a href="index.html"> Voyawander</a></div>
<div class="head3">
<a class="heads" href="index.html">Home</a>
<a class="heads" href="about.html">About Us</a>
<a class="heads" href="hotel.html">Hotels</a>
<a class="heads" href="Flight.html">Flights</a>
<a class="heads" href="contact.html">Contact Us</a>
<a class="heads" href="login.html">Login</a>
</div>
<span class="material-symbols-outlined">
menu
</span>
</div>
<div id="main" class="wrapper">
<form id="addressForm">
<div class="singleRow">
<div>
<p>Name <span>*</span></p>
<input id="name" type="text" placeholder="Enter your name" required>
</div>
<div>
<p>Mobile No. <span>*</span></p>
<input id="mobile" type="text" placeholder="Enter your Mobile no." required>
</div>
</div>
<div>
<p>Address (Area & Street) <span>*</span></p>
<input id="area" type="text" placeholder="Type your Address" required>
</div>
<div class="singleRow">
<div>
<p>Landmark <span>*</span></p>
<input id="landmark" type="text" placeholder="Enter Landmark" required>
</div>
<div>
<p>Pincode <span>*</span></p>
<input id="pincode" type="text" placeholder="Enter pincode" required>
</div>
</div>
<div>
<p>Email <span>*</span></p>
<input id="email" type="text" placeholder="Enter your Mail Address" required>
</div>
<div>
<select name="address" id="addressType">
<option value="">Address Type</option>
<option value="home">Home</option>
<option value="office">Office</option>
<option value="others">Others</option>
</select>
</div>
<input type="checkbox">
<p class="inline"> I want to subscribe to Voyawander Travels</p>
<input type="submit" value="Confirm">
</form>
<div id="orderSummary">
<h1> Hotel Booking <span id="totalitem"></span></h1>
<div>
<p class="gray">One Night charge</p>
<p id="totalmrp">$220/person</p>
</div>
<div>
<p class="gray">Days</p>
<p id="payday">3 * 220$</p>
</div>
<div>
<p class="gray">Total Discounts</p>
<p id="totaldiscount" class="green">Null</p>
</div>
<hr>
<div>
<h2>Payable Amount</h2>
<h2 id="paytm"> $660 </h2>
</div>
<hr>
<h2 style="color: deepskyblue;">Press Confirm for payment. </h2>
</div>
</div>
<!---------------- Footer section -------------------->
<div class="footer">
<div class="footermain">
<div class="contensection">
<h1>Voyagers</h1>
<p style="margin-top: 10px">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit animi possimus, quos error nostrum officiis
blanditiis, sequi recusandae repellendus suscipit aspernatur.
Perspiciatis officiis debitis similique.
</p>
</div>
<div class="iconsection">
<div>
<a href="https://www.instagram.com/"><img class="imageicon" src="insta.png" alt="icon" /></a>
</div>
<div>
<a href="https://www.linkedin.com/checkpoint/lg/sign-in-another-account"><img class="imageicon"
src="linkedin.png" alt="icon" /></a>
</div>
<div>
<a href="https://www.facebook.com/"><img class="imageiconf" src="facebook.png" alt="icon" /></a>
</div>
</div>
</div>
</div>
</body>
<script src="./address.js"></script>
</html>