-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
52 lines (52 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Mon Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="product.html">Produit</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="social.html">Réseaux sociaux</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Mon Portfolio</h1>
<ul class="portfolio-list">
<li>
<a href="#">
<img src="image1.jpg" alt="Image 1">
<h2>Projet 1</h2>
</a>
</li>
<li>
<a href="#">
<img src="image2.jpg" alt="Image 2">
<h2>Projet 2</h2>
</a>
</li>
<li>
<a href="#">
<img src="image3.jpg" alt="Image 3">
<h2>Projet 3</h2>
</a>
</li>
<li>
<a href="#">
<img src="image4.jpg" alt="Image 4">
<h2>Projet 4</h2>
</a>
</li>
</ul>
</main>
<footer>
<p>Droits d'auteur © 2023</p>
</footer>
</body>
</html>