-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingenieur.html
55 lines (50 loc) · 1.98 KB
/
ingenieur.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Ingénieur</title>
<link rel="stylesheet" href="styles_inge.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="project-section">
<h2>Projets d'Ingénieur</h2>
<div class="project">
<div class="project-preview">
<iframe src="rapport_1.pdf" width="100%" height="200px"></iframe>
</div>
<div class="project-info">
<h3>Étude d'Impact Environnemental</h3>
<p>Rapport détaillé sur l'impact environnemental pour les projets récents.</p>
<a href="rapport_1.pdf" target="_blank" class="project-link">Télécharger le rapport</a>
</div>
</div>
<div class="project">
<div class="project-preview">
<iframe src="rapport_2.pdf" width="100%" height="200px"></iframe>
</div>
<div class="project-info">
<h3>Gestion des Ressources en Eau</h3>
<p>Étude approfondie sur la gestion des ressources hydriques et leur durabilité.</p>
<a href="rapport_2.pdf" target="_blank" class="project-link">Télécharger le rapport</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Mon Portfolio | <a href="mailto:contact@example.com">Contact</a></p>
</footer>
<script src="scripts.js"></script>
</body>
</html>