-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeb's movie website.html
More file actions
67 lines (59 loc) · 2.06 KB
/
Seb's movie website.html
File metadata and controls
67 lines (59 loc) · 2.06 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Movie App</title>
<link rel="stylesheet" href="_static/style.css">
</head>
<body>
<html>
<head>
<title>My Movie App</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="list-movies-title">
<h1>My Movie App</h1>
</div>
<div>
<ol class="movie-grid">
<ol class="movie-grid">
<li>
<div class="movie">
<img class="movie-poster" src="https://m.media-amazon.com/images/M/MV5BOWRjMzkzZWMtNjQ2Yy00M2E5LTg2OWItZGY4YzQyMjg4NjQ2XkEyXkFqcGc@._V1_SX300.jpg">
<div class="movie-title">Call Me Chihiro</div>
<div class="movie-year">2023</div>
<div class="rating-bubble">6.9</div>
</div>
</li>
<li>
<div class="movie">
<img class="movie-poster" src="https://m.media-amazon.com/images/M/MV5BMjEyNDQwMTQ3OV5BMl5BanBnXkFtZTcwMTY5MzI0MQ@@._V1_SX300.jpg">
<div class="movie-title">Dead Silence</div>
<div class="movie-year">2007</div>
<div class="rating-bubble">6.1</div>
</div>
</li>
<li>
<div class="movie">
<img class="movie-poster" src="https://m.media-amazon.com/images/M/MV5BMTAzNTIzMjkxNjJeQTJeQWpwZ15BbWU3MDEwNDQ2OTU@._V1_SX300.jpg">
<div class="movie-title">Another Earth</div>
<div class="movie-year">2011</div>
<div class="rating-bubble">6.9</div>
</div>
</li>
<li>
<div class="movie">
<img class="movie-poster" src="https://m.media-amazon.com/images/M/MV5BNjAzODViNGEtMjBkYi00N2U5LWJjNjAtY2U0MGJhZTEwOTU0XkEyXkFqcGc@._V1_SX300.jpg">
<div class="movie-title">Princess Mononoke</div>
<div class="movie-year">1997</div>
<div class="rating-bubble">8.3</div>
</div>
</li>
</ol>
</ol>
</div>
</body>
</html>
</body>
</html>