forked from Alipakkr/Voyawander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
91 lines (86 loc) · 3.2 KB
/
payment.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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="./payment.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<title> Voyawander Payment page</title>
</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>
<!-- Payment Method conatainer start here -->
<div class="payment-method">
<div class="payment-new-method">
<div class="method-heading">
<h2>Payment Method</h2>
</div>
<div class="paymentData">
<div class="payment-list">
<ul>
<li><button id="UPI">Pay Using UPI</button></li>
<li><button id="Debit-Card">Debit Card</button></li>
<li><button id="credit">Credit Card</button></li>
<li><button id="simpl">Simpl</button></li>
<li><button id="wallets">Wallets</button></li>
<li><button id="internet">Internt Banking</button></li>
<li><button>EMI or Pay Later</button> </li>
<li>
<button id="cashOn">Cash On delivery</button>
</li>
</ul>
</div>
<div id="payment-method-card">
</div>
</div>
</div>
</div>
<!-- Payment Method conatainer end here -->
<!---------------- 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="./payment.js"></script>
</html>