-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
72 lines (59 loc) · 2.84 KB
/
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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.css">
<link rel="shortcut icon" href="assets/favicon/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap" rel="stylesheet">
<title>Le Coeur De Pierre</title>
</head>
<body>
<div class="container d-flex flex-column movie-section">
<nav class="navbar navbar-expand navbar-light main-color flex-column container fixed-top">
<br />
<a href="index.html" class="text-decoration-none text-body"><h1>Le Coeur De Pierre</h1></a>
<ul class="navbar-nav justify-content-center w-100">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="movie.html">Film</a>
</li>
<li class="nav-item">
<a class="nav-link" href="casting.html">Casting</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
<br />
<div class="d-flex flex-column align-items-center ">
<br />
<div class="youtube-video-container">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/8IsZNDBJImY"
frameborder="0"
allow="accelerometer;
autoplay; clipboard-write;
encrypted-media; gyroscope;
picture-in-picture"
allowfullscreen>
</iframe>
</div>
<br />
<h5 class="text-center px-lg-5">Fleurtant avec le cinéma du réel et dans une veine onirique assumée, « le coeur de pierre » esquisse par petites touches tendres, cruelles, poétiques et drôles les contours de l’humanité cachée de Pedro, un gitan qui taille sa route au jour le jour.</h5>
<small class="italic">Durée 13min.</small>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>