-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (97 loc) · 3.2 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css"/>
<script src="script.js"></script>
<title>Theatre Seat Booking</title>
</head>
<body>
<div class="header">
<h1>Theatre Booking Website</h1>
</div>
<h3>1. DATE SEARCH: <input type="text" class="input" id="dateInput" onkeyup="dateFunction()" placeholder="Search for the DATE of your desired seat(s) here... "></h3>
<h3>2. TIME SEARCH: <input type="text" class="input" id="timeInput" onkeyup="timeFunction()" placeholder="Search for the TIME of your desired seat(s) here... "></h3>
<h3>3. SECTION SEARCH: <input type="text" class="input" id="sectionInput" onkeyup="sectionFunction()" placeholder="Search for the SECTION of your desired seat(s) here... "></h3>
<table id="table">
<tr id="headings">
<th>Seat ID</th>
<th>Date</th>
<th>Time</th>
<th>Seat Section</th>
<th>Show</th>
</tr>
<tr>
<td>1</td>
<td>June 12th</td>
<td>7 PM</td>
<td>A</td>
<td>Snow White</td>
</tr>
<tr>
<td>2</td>
<td>June 19th</td>
<td>7 PM</td>
<td>A</td>
<td>The Witcher</td>
</tr>
<tr>
<td>3</td>
<td>May 13th</td>
<td>8 PM</td>
<td>B</td>
<td>Games of Throne</td>
</tr>
<tr>
<td>4</td>
<td>June 13th</td>
<td>8 PM</td>
<td>C</td>
<td>The Dark Knight</td>
</tr>
<tr>
<td>5</td>
<td>June 11th</td>
<td>6 PM</td>
<td>C</td>
<td>Opera Legends</td>
</tr>
<tr>
<td>6</td>
<td>July 12th</td>
<td>5 PM</td>
<td>C</td>
<td>St. Furious Highschool Band Night</td>
</tr>
<tr>
<td>7</td>
<td>July 12th</td>
<td>12 PM</td>
<td>D</td>
<td>Musics</td>
</tr>
<tr>
<td>8</td>
<td>April 1st</td>
<td>3 PM</td>
<td>E</td>
<td>Cheese Burgers</td>
</tr>
<tr>
<td>9</td>
<td>April 22nd</td>
<td>3 PM</td>
<td>E</td>
<td>Bedtime Story</td>
</tr>
<tr>
<td>10</td>
<td>May 20th</td>
<td>4 PM</td>
<td>F</td>
<td>Creepypasta</td>
</tr>
</table>
</body>
</html>