-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
43 lines (42 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Seat Selector</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="computer-frame">
<div class="screen">
<div class="container">
<h1>BookMySeats</h1>
<div class="screen-header">All Eyes This Way Please!!!</div>
<div class="seats-grid" id="seats-grid"></div>
<div class="selected-info">
<p><strong>Selected Seats:</strong> <span id="selected-seats"></span></p>
<p><strong>Total Price:</strong> ₹<span id="total-price">0</span></p>
</div>
<button id="book-btn" class="book-btn">Book</button>
<div id="confirmation-message" class="confirmation-message"></div>
<div class="legend">
<div class="legend-item">
<div class="legend-color available"></div>
<span class="legend-text">Available</span>
</div>
<div class="legend-item">
<div class="legend-color booked"></div>
<span class="legend-text">Booked</span>
</div>
<div class="legend-item">
<div class="legend-color selected"></div>
<span class="legend-text">Selected</span>
</div>
</div>
</div>
</div>
<div class="computer-base"></div>
</div>
<script src="script.js"></script>
</body>
</html>