-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
62 lines (60 loc) · 2.11 KB
/
payment.html
File metadata and controls
62 lines (60 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedEase - Pay Online</title>
<link rel="stylesheet" href="payment.css">
</head>
<body>
<div class="container">
<!-- Navigation Bar -->
<nav class="navbar">
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Medical Specialties</a></li>
<li><a href="#">Health Care Tips</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<header>
<div class="header-left">
<h1>MedEase</h1>
</div>
<div class="header-right">
<img src="images/medlogo.png" alt="User Avatar" class="user-avatar">
</div>
</header>
<main>
<h2>Pay Online</h2>
<p class="subtext">We provide you with an easy and secure way to pay hospital bills for you or your loved ones.</p>
<div class="payment-details">
<h3>Payment Details</h3>
<div class="total-amount">Total: Rs. 2000.00</div>
<p class="pay-via">Pay Via</p>
<div class="payment-icons">
<a href="https://www.visa.com" title="Visa">
<img src="https://cdn-icons-png.flaticon.com/512/349/349221.png" alt="Visa Icon">
</a>
<a href="https://www.mastercard.com" title="MasterCard">
<img src="https://cdn-icons-png.flaticon.com/512/196/196561.png" alt="MasterCard Icon">
</a>
<a href="https://www.paypal.com" title="PayPal">
<img src="https://cdn-icons-png.flaticon.com/512/888/888870.png" alt="PayPal Icon">
</a>
</div>
</div>
<div class="card-details">
<h4>Card Details</h4>
<form>
<input type="text" placeholder="Card Number" required>
<input type="text" placeholder="Name on Card" required>
<input type="text" placeholder="Expiration Date (MM/YYYY)" required>
<button type="submit"><a href="confirmation.html">PAY NOW </a></button>
</form>
</div>
</main>
</div>
</body>
</html>