-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotographe.html
63 lines (56 loc) · 2.08 KB
/
photographe.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photographe</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mon Portfolio</div>
<nav>
<ul>
<li><a href="index.html" class="nav-link">Accueil</a></li>
<li><a href="photographe.html" class="nav-link">Photographe</a></li>
<li><a href="ingenieur.html" class="nav-link">Ingénieur</a></li>
</ul>
</nav>
</header>
<main>
<section class="photo-categories">
<h2>Portfolio Photographe</h2>
<div class="category-links">
<a href="#portraits" class="category-link">Portraits</a>
<a href="#photo-de-rue" class="category-link">Photo de Rue</a>
<a href="#evenementiel" class="category-link">Événementiel</a>
<a href="#sport" class="category-link">Sport</a>
<a href="#astrophotographie" class="category-link">Astrophotographie</a>
</div>
</section>
<section id="portraits" class="photo-category">
<h3>Portraits</h3>
<!-- Galerie de portraits ici -->
</section>
<section id="photo-de-rue" class="photo-category">
<h3>Photo de Rue</h3>
<!-- Galerie de photos de rue ici -->
</section>
<section id="evenementiel" class="photo-category">
<h3>Événementiel</h3>
<!-- Galerie d'événementiel ici -->
</section>
<section id="sport" class="photo-category">
<h3>Sport</h3>
<!-- Galerie de sport ici -->
</section>
<section id="astrophotographie" class="photo-category">
<h3>Astrophotographie</h3>
<!-- Galerie d'astrophotographie ici -->
</section>
</main>
<footer>
<p>© 2024 Mon Portfolio | <a href="mailto:contact@example.com">Contact</a></p>
</footer>
</body>
</html>