-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (34 loc) · 1.62 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
<!-- TODO 1: Create the HTML Boilerplate -->
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mon Portfolio</title>
</head>
<!----This is the body-->
<body>
<h1>Yvann guyonnet Portfolio</h1>
<h2> Je suis un Full Stack developer</h2>
<hr>
<h2><a href="./public/movie-ranking.html">Projet de classement de film</a></h2>
<h3>Les meilleurs films selon Yvann</h3>
<h4>Mon Top 3 des meilleurs films de tous les temps</h4>
<hr>
<h4>Dark Knight</h4>
Un film sur le légendaire Batman, réalisé par Christopher Nolan, sorti en 2008.
<img src="./assets/images/dark-knight.jpeg" alt="Dark Knight" height="400">
<h4>Inception</h4>
Un film de science-fiction développé par Jørn Utzon, réalisé par Christopher Nolan et David Lynch, sorti en 2010.
<img src="./assets/images/Inception.jpeg" alt="Inception" height="400">
<h4>Eternal Sunshine of the Spotless Mind</h4>
Un film de romance d'amour et de psychologie, réalisé par Kate Winslet, sorti en 2004.
<img src="./assets/images/Eternal-Sunshine-of-the-Spotless-Mind.jpeg" alt="Eternal Sunshine of the Spotless Mind" height="400">
<h2> <a href="./public/birthday-invite.html">L'invitation à mon anniversaire</a></h2>
<h3>Une invitation spéciale pour mon anniversaire</h3>
<h4>Le 27 Mars 1992</h4>
<img src="./assets/images/birthday-invite.png" alt="Birthday Invite" height="400">
<hr>
<a href="./public/about.html">A propos de moi</a> <a href="./public/contact.html">Contactez-moi</a>
</body>
</html>