-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
26 lines (25 loc) · 854 Bytes
/
movie.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/movie.css">
<title>Détails du Film</title>
</head>
<body>
<header>
<a href="index.html"> Accueil</a>
<a href="search.html"> Recherche </a>
</header>
<main>
<div class="card">
<img id="moviePoster" alt="Poster du film">
<h2 id="movieTitle">Titre du film</h2>
<p><strong>Plot:</strong> <span id="moviePlot"></span></p>
<p><strong>Genre:</strong> <span id="movieGenre"></span></p>
<p><strong>Acteurs:</strong> <span id="movieActors"></span></p>
</div>
</main>
<script src="javascript/movie.js" type="module"></script>
</body>
</html>