-
Notifications
You must be signed in to change notification settings - Fork 0
/
a-propos.html
31 lines (31 loc) · 952 Bytes
/
a-propos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mon blog</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/c39494275b.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header class="topBar">
<nav>
<a href="index.html">Accueil</a>
<a href="articles.html" class="active">Articles</a>
<a href="a-propos.html">À propos</a>
<a href="contact.html">Contact</a>
</nav>
<div class="social-icons">
<a href="http://facebook.com" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-facebook-f"></i
></a>
<a href="http://x.com" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-twitter"></i
></a>
</div>
</header>
</body>
</html>