-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoodboard.html
More file actions
63 lines (57 loc) · 2.34 KB
/
moodboard.html
File metadata and controls
63 lines (57 loc) · 2.34 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moodboard - Tom DAVY</title>
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
/* Force le fond de la page entière à être noir pendant la transition */
html {
background-color: rgb(20, 20, 94);
}
/* Cache le body pour le faire apparaître en fondu */
body {
opacity: 0;
}
</style>
</head>
<body>
<!-- Menu de navigation -->
<nav class="navbar">
<a href="index.html" class="navbar-brand">
<img src="img/Logo_Davy.png" alt="Logo de Tom Davy">
</a> <!-- Bouton Mode Sombre -->
<button id="theme-toggle" class="theme-btn"><i class="fas fa-moon"></i></button>
<!-- Bouton "hamburger" -->
<button class="navbar-toggler" type="button">
<i class="fas fa-bars"></i>
</button>
<!-- Menus -->
<ul class="menu">
<li><a href="index.html"><i class="fas fa-home"></i> Accueil</a></li>
<li><a href="portfolio.html"><i class="fas fa-book-open"></i> Portfolio</a></li>
<li><a href="moodboard.html" class="active"><i class="fas fa-palette"></i> Moodboard</a></li>
<li><a href="contact.html"><i class="fas fa-message"></i> Contact</a></li>
</ul>
</nav>
<!-- Main-->
<main>
<section id="moodboard">
<h1>Mon univers</h1>
<p>Quelques images qui représentent mes passions et inspirations.</p>
<div class="moodboard-grid">
<div class="moodboard-item"><img src="img/moodboard.png" alt="Moodboard de DAVY Tom"><div class="moodboard-caption">Mon moodboard</div></div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<p>© 2026 - Portefolio Tom DAVY</p>
</footer>
<!-- Lien vers le Javascript -->
<script src="js/script.js"></script>
</body>
</html>