Mohit69-User
/
Movie-Booking-JS---DOM-Manipulation-JS-Changing-this-call-bind-apply---Post---qnvb5g7gvq1x
Public
forked from Shraddha08-cmyk/Movie-Booking-JS---DOM-Manipulation-JS-Changing-this-call-bind-apply---Post---qnvb5g7gvq1x
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 786 Bytes
/
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
<!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">
<script src="./app.js" defer type="module"> </script>
<link rel="stylesheet" href="./app.css">
<title>Document</title>
</head>
<body>
<nav>
<div class="logo">Movie Book</div>
<ul>
<li>Home</li>
<li>About us</li>
<li>Know more</li>
</ul>
</nav>
<main id="main">
</main>
<div id="booker">
<h3 class="v-none">Seat Selector</h3>
<div id="booker-grid-holder"></div>
<button id="book-ticket-btn" class="v-none">Book my seats</button>
</div>
</body>
</html>