-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBootstrap4_project.html
More file actions
59 lines (53 loc) · 2.78 KB
/
Copy pathBootstrap4_project.html
File metadata and controls
59 lines (53 loc) · 2.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#showtimes">Showtimes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#deals">Deals</a>
</li>
</ul>
<div class="container" id="showtimes">
<h1 class="display-4 my-5 text-center">Now Showing</h1>
<div class="card-deck">
<div class="card">
<img src="Img/kong_skull_island.jpg" class="card-img-top" alt="Kong: Skull Island Poster">
<div class="card-body">
<h5 class="card-title">Kong: Skull Island</h5>
<p class="card-text">A team of scientists and soldiers explore an uncharted island in the Pacific, unaware that they are crossing into the domain of monsters, including the mythic Kong.</p>
<span class="badge badge-pill badge-info">12:00 p.m.</span>
<span class="badge badge-pill badge-info">1:30 p.m.</span>
<span class="badge badge-pill badge-info">3:00 p.m.</span>
<span class="badge badge-pill badge-info">5:30 p.m.</span>
<span class="badge badge-pill badge-info">7:00 p.m.</span>
<span class="badge badge-pill badge-info">9:30 p.m.</span>
</div>
</div>
<div class="card">
<img src="Img/ghost_in_the_shell.jpg" class="card-img-top" alt="Ghost in the Shell Poster">
<div class="card-body">
<h5 class="card-title">Ghost in the Shell</h5>
<p class="card-text">In the near future, Major is the first of her kind: A human saved from a terrible crash, who is cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.</p>
<span class="badge badge-pill badge-info">12:00 p.m.</span>
<span class="badge badge-pill badge-info">1:30 p.m.</span>
<span class="badge badge-pill badge-info">3:00 p.m.</span>
<span class="badge badge-pill badge-info">5:30 p.m.</span>
<span class="badge badge-pill badge-info">7:00 p.m.</span>
<span class="badge badge-pill badge-info">9:30 p.m.</span>
</div>
</div>
<div class="card">
<img src="Img/beauty_and_the_beast.jpg" class="card-img-top" alt="Beauty and the Beast Poster">
<div class="card-body">
<h5 class="card-title">Beauty and the Beast</h5>
<p class="card-text">A selfish Prince is cursed to become a monster for the rest of his life, unless he learns to fall in love with a beautiful young woman he keeps prisoner.</p>
<span class="badge badge-pill badge-info">12:00 p.m.</span>
<span class="badge badge-pill badge-info">1:30 p.m.</span>
<span class="badge badge-pill badge-info">3:00 p.m.</span>
<span class="badge badge-pill badge-info">5:30 p.m.</span>
<span class="badge badge-pill badge-info">7:00 p.m.</span>
<span class="badge badge-pill badge-info">9:30 p.m.</span>
</div>
</div>