-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.php
29 lines (26 loc) · 1.04 KB
/
sitemap.php
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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>SITEMAP</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include('header.php'); ?>
<main>
<div class="container">
<h1>Sitemap</h1>
<div class="thumbnail">
<ul>
<li><a href="index.php">Tous les tutos</a></li>
<li><a href="landing.php">Comment ça marche ?</a></li>
<li><a href="landing.php">Notre histoire</a></li>
<li><a href="sitemap.php">Plan du site</a></li>
</ul>
</div>
</div>
</main>
<?php include('footer.php'); ?>
</body>
</html>