generated from Newton-School/html-css-js-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (68 loc) · 2.72 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
<!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">
<title>Movies Booking App</title>
<link rel="icon" type="image/x-icon" href="/fevicon.png">
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<!-- ------------- Navigation Bar --------- -->
<nav class="nav-bar">
<div>
<!-- <a href="\Movie-booking-app\Ticket booking-logos_transparent.png" >
</a>
<img src="..//Ticket booking-logos_transparent.png" width="40px" height="50px" />........> -->
<h2 class="logo">Movies Booking App</h2>
</div>
<form action="" id="form">
<input type="text" class="search-box" id="search" placeholder="Movie, Actor, Category,Genre">
</form>
</nav>
<div class="main">
<!-- ------------- Side Bar ----------- -->
<sidebar class="sidebar">
<div class="category-container" id="tag">
<div class="tag">Action</div>
<div class="tag">Drama</div>
</div>
</sidebar>
<!-- ------------- Main content ----------- -->
<div class="container">
</div>
<!----------- Modal content -------->
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close" onclick="makeOut(this)">×</span>
<div class="movie-card">
<div class="movie-image">
<img src="" id="image" alt="">
</div>
<div class="movie-details">
<h3 id="title"></h3>
<h3 id="rating"></h3>
<h3 id="language"></h3>
<h3 id="genre"></h3>
<P id="description"></P>
</div>
</div>
<div class="Booking" id="booking">
<h3>Rs. <span id="price"></span></h3>
<button>Book Tickets</button> -->
<div id="ticket-container">
<p id="ticket-price">$<span id="price"></span></p>
<button id="buy-button">Buy Ticket</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>