-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
91 lines (77 loc) · 3.53 KB
/
contact.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
<!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="stylesheet" href="styles/font-awesome-4.7.0/css/font-awesome.min.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 justify-content-center movie-section flex-column h-100">
<nav class="navbar navbar-expand navbar-light main-color fixed-top flex-column container">
<br />
<a href="index.html" class="text-decoration-none text-body"><h1>Le Coeur De Pierre</h1></a>
<div class="container-fluid">
<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" 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 active" aria-current="page" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="d-flex flex-row align-items-center w-100">
<div class="contact-card w-100 flex-column">
<br />
<div class="row">
<div class="col-12">
<img src="assets/images/Olivier_Blachere.webp" class="rounded-circle" alt="Olivier Blachere">
</div>
</div>
<div class="row">
<div class="col-12">
<h5>Olivier Blachere</h2>
</div>
</div>
<div class="row">
<div class="col-12">
<h5>
06 01 91 04 54 / aerial@free.fr
</h5>
<a href="https://github.com/Cloud-Kid/"><small>Website : CloudKid</small></a>
</div>
</div>
<br />
<div class="row contact-icons">
<div class="col-4">
<a href="https://www.youtube.com/channel/UCpas3mt-XYUpGLjGNjLpVrA/videos"><i class="fa fa-youtube-play" aria-hidden="true"></i></a>
</div>
<div class="col-4">
<a href="https://www.instagram.com/blachere/"><i class="fa fa-instagram" aria-hidden="true"></i></a>
</div>
<div class="col-4">
<a href="https://www.facebook.com/oblachere"><i class="fa fa-facebook-official" aria-hidden="true"></i></a>
</div>
</div>
</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>
</div>
</body>
</html>