-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
94 lines (94 loc) · 4.28 KB
/
portfolio.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
91
92
93
94
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Clément DORGE</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="img/favicon.png" type="image/png">
</head>
<body style="background: linear-gradient(rgb(7, 134, 238), rgb(7, 53, 105));">
<div class="announcement"><a href="cv.html">
<p>Je suis actuellement à la recherche d'un stage en développement informatique entre août et décembre.</p>
</a></div>
<header>
<nav>
<ul>
<li><a href="home.html">Accueil</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h2 style="margin-top: 130px; text-align: center; font-size: 46px; font-weight: bold; color: #333; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); padding: 10px; border: 2px solid #333; border-radius: 5px;">Mes projets</h2>
<main class="portfolio main-content">
<section class="project">
<div class="project-item">
<img src="img/My_rpg.png" alt="My RPG">
<div class="project-info">
<h3>My RPG</h3>
<p>Jeu RPG complet, avec système d'inventaire, collision ...</p>
<a href="details/my_rpg.html" class="details-button">Détails</a>
</div>
</div>
<div class="project-item">
<img src="img/corewar.jpg" alt="Corewar">
<div class="project-info">
<h3>Corewar</h3>
<p>Création du mythique Corewar.</p>
<!-- <a href="details/corewar.html" class="details-button">Détails</a> -->
</div>
</div>
<div class="project-item">
<img src="img/42sh.jpg" alt="42sh">
<div class="project-info">
<h3>42sh</h3>
<p>Un shell qui reprend les fonctionnalités du TCSH.</p>
<!-- <a href="details/42sh.html" class="details-button">Détails</a> -->
</div>
</div>
<div class="project-item">
<img src="img/MyPaint_logo.png" alt="My Paint">
<div class="project-info">
<h3>My Paint</h3>
<p>Logiciel d'édition et de création d'images.</p>
<!-- <a href="details/my_paint.html" class="details-button">Détails</a> -->
</div>
</div>
<div class="project-item">
<img src="img/My_radar_logo.png" alt="My Radar">
<div class="project-info">
<h3>My Radar</h3>
<p>Jeu de simulation de collision d'avions.</p>
<!-- <a href="details/my_radar.html" class="details-button">Détails</a> -->
</div>
</div>
<div class="project-item">
<img src="img/intragenda_logo.png" alt="IntrAgenda">
<div class="project-info">
<h3>IntrAgenda</h3>
<p>Permet d'exporter son agenda Intranet d'Epitech sur Google Agenda.</p>
<!-- <a href="details/intragenda.html" class="details-button">Détails</a> -->
</div>
</div>
<div class="project-item">
<img src="img/VoiceCode_logo.png" alt="VoiceCode">
<div class="project-info">
<h3>VoiceCode</h3>
<p>Programme permettant de coder en C avec sa voix.</p>
<!-- <a href="details/voicecode.html" class="details-button">Détails</a> -->
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 Clément DORGE. Tous droits réservés.</p>
<p>Email: <a href="mailto:clement.dorge@epitech.eu">clement.dorge@epitech.eu</a> | Téléphone: <a href="tel:+33624086128">+33 6 24 08 61 28</a></p>
</div>
</footer>
<script src="script.js"></script>
<div class="custom-cursor"></div>
</body>
</html>