forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_buy.html
58 lines (51 loc) · 1.65 KB
/
train_buy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buy Train Ticket</title>
<link rel="shortcut icon" href="images/4.jpeg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="logo">Ticket Marketplace</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="sell.html">Sell Ticket</a></li>
<li><a href="buy.html">Buy Ticket</a></li>
</ul>
</nav>
<!-- Buy Train Tickets Section -->
<section class="ticket-list">
<h1>Available Train Tickets</h1>
<div class="ticket-card">
<h3>Ticket Number: 54321</h3>
<p><strong>Seat:</strong> S1 10</p>
<p><strong>From:</strong> Boston</p>
<p><strong>To:</strong> Chicago</p>
<p><strong>Date:</strong> 18/10/2024</p>
<p><strong>Coach:</strong> AC First Class</p>
<p><strong>Price:</strong> $120</p>
<button class="btn">Buy Ticket</button>
</div>
<div class="ticket-card">
<h3>Ticket Number: 98765</h3>
<p><strong>Seat:</strong> S2 3</p>
<p><strong>From:</strong> Miami</p>
<p><strong>To:</strong> Orlando</p>
<p><strong>Date:</strong> 20/10/2024</p>
<p><strong>Coach:</strong> Sleeper</p>
<p><strong>Price:</strong> $70</p>
<button class="btn">Buy Ticket</button>
</div>
<!-- Add more tickets as needed -->
</section>
<!-- Footer -->
<footer class="footer">
<p>© 2024 Ticket Marketplace | All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>