-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
28 lines (24 loc) · 820 Bytes
/
about.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/style.css">
<title>Blog</title>
</head>
<body>
<header class="test">
<nav class="navigation">
<a href="#">Accueil</a>
<a href="articles.html">Articles</a>
<a href="about.html" class="bold">A propos</a>
<a href="contact.html">Contact</a>
</nav>
<div class="network">
<img src="images/facebook.png" alt="facebook">
<img src="images/twitter.png" alt="twitter">
</div>
<img src="images/banniere.png" alt="" class="banniere">
</header>
</body>
</html>