-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (107 loc) · 4.4 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
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CineApp</title>
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.4/tiny-slider.css">
</head>
<body>
<main>
<section class="featured-movies">
<h2>Featured Movies</h2>
<div class="fixedWidth">
<div class="movie">
<img src="assets/img/poster-parasite.jpg" alt="parasite poster" class="movie-poster">
<h3 class="movie-title">Parasite</h3>
<p class="movie-sinopse">All unemployed, Ki-taek and his family take peculiar interest in the wealthy and
glamorous Parks.</p>
<div class="movie-sessions">
<span>3:30 PM</span>
<span>6:00 PM</span>
<span>8:30 PM</span>
</div>
</div>
<div class="movie">
<img src="assets/img/poster-frozen.png" alt="parasite poster" class="movie-poster">
<h3 class="movie-title">Frozen II</h3>
<p class="movie-sinopse">Anna, Elsa, Kristoff, Olaf and Sven leave Arendelle to travel to an ancient,
autumn-bound forest...</p>
<div class="movie-sessions">
<span>1:00 pM</span>
<span>2:00 PM</span>
<span>4:00 PM</span>
</div>
</div>
<div class="movie">
<img src="assets/img/poster-weathering.png" alt="parasite poster" class="movie-poster">
<h3 class="movie-title">Weathering with You</h3>
<p class="movie-sinopse">A high-school boy who has run away to Tokyo befriends a girl who appears to be able
to change the weather.</p>
<div class="movie-sessions">
<span>1:45 PM</span>
<span>4:00 PM</span>
<span>6:15 PM</span>
</div>
</div>
<div class="movie">
<img src="assets/img/poster-midway.png" alt="parasite poster" class="movie-poster">
<h3 class="movie-title">Midway</h3>
<p class="movie-sinopse">The historic story of the Battle of Midway, told by the leaders and the sailors who
fought in it.</p>
<div class="movie-sessions">
<span>3:30 PM</span>
<span>6:00 PM</span>
<span>8:30 PM</span>
</div>
</div>
</div>
</section>
<section class="coming-soon">
<h2>Coming Soon</h2>
<div class="biggest-movie-gallery">
<img class="movie-gallery-poster" src="assets/img/poster-midway.png" alt="">
<img class="movie-gallery-poster" src="assets/img/poster-frozen.png" alt="">
<img class="movie-gallery-poster" src="assets/img/poster-knives-out.png" alt="">
<img class="movie-gallery-poster" src="assets/img/poster-ford-ferrari.png" alt="">
</div>
</section>
<section class="recently-watched">
<h2>Recently Watched</h2>
<div class="smaller-movie-gallery">
<img class="movie-gallery-poster" src="assets/img/poster-charlies.png" alt="">
<img class="movie-gallery-poster" src="assets/img/poster-beautiful-day.png" alt="">
</div>
</section>
<section class="stream-on-demand">
<h2>Stream On Demand</h2>
<div class="smaller-movie-gallery">
<img class="movie-gallery-poster" src="assets/img/poster-weathering.png" alt="">
<img class="movie-gallery-poster" src="assets/img/poster-read.png" alt="">
</div>
</section>
</main>
<nav>
<li class="nav-item">
<a href="index.html"><img class="nav-icon" src="assets/icons/discover.svg"
alt="discover icon"><span>Discover</span></a>
</li>
<li class="nav-item">
<a href="my-tickets.html"><img class="nav-icon" src="assets/icons/ticket.svg"
alt="discover icon"><span>Tickets</span></a>
</li>
<li class="nav-item">
<a href="theaters.html"><img class="nav-icon" src="assets/icons/theaters.svg"
alt="discover icon"><span>Theaters</span></a>
</li>
<li class="nav-item">
<a href="my-account.html"><img class="nav-icon" src="assets/icons/account.svg"
alt="discover icon"><span>Account</span></a>
</li>
</nav>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>