-
Notifications
You must be signed in to change notification settings - Fork 0
/
tickets.html
executable file
·72 lines (53 loc) · 2.57 KB
/
tickets.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
<HTML>
<Head>
<title> Children of Men | Tickets </title>
<meta name ="tickets" content ="this is the place to get tickets">
<link rel ="stylesheet" href ="style.css" />
</Head>
<body>
<header class ="main-header">
<nav class ="nav main-nav">
<ul>
<li> <a href ="index.html"> Home</a> </li>
<li> <a href ="Store.html"> Store</a> </li>
<li> <a href ="tickets.html"> Tickets</a> </li>
</ul>
</nav>
<h1 class ="film-name film-name-large"> Children of Men </h1>
<div class="container">
<button class = "btn btn-header"> Get tickets </button><br>
<button class = "btn btn-header btn-play"> ► </button>
</div>
</header>
<section class ="content-section container">
<h2 class="section-header" > Tickets </h2>
<div class ="now-showing-row">
<span class ="row-item date">July 16 </span>
<span class ="row-item city">Kathmandu City</span>
<span class ="row-item hall">Civil QFX</span>
<button class ="btn hall-button" button type="button">Buy Tickets</button>
</div>
<div class ="now-showing-row">
<span class ="row-item date">July 20 </span>
<span class ="row-item city">Pokhara</span>
<span class ="row-item hall">Pokhara Cineplex</span>
<button class ="btn row-item hall-button" button type="button">Buy Tickets</button>
</div>
<div class ="now-showing-row">
<span class ="row-item date">July 25 </span>
<span class ="row-item city">Chitwan</span>
<span class ="row-item hall">Jalma Hall</span>
<button class ="btn hall-button" button type="button">Buy Tickets</button>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class ="film-name"> Contact Us !! </h3>
<ul class = "nav footer-nav">
<li><a href = "https://facebook.com" target ="_blank"> <img src = "images/fb.png" width ="40"></a> </li>
<li><a href = "https://youtube.com" target ="_blank"> <img src = "images/youtube.png" width = "40"></a></li>
</ul>
</div>
</footer>
</body>
</HTML>