-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (39 loc) · 1.44 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="fr-FR">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no"/>
<title>Lemon Tonic - mettez du tonic dans votre quotidien</title>
<meta name="description" content="Lemon-Tonic, donnez du tonic à votre quotidien"/>
<style>
@import "css/global.css";
@import "css/index.css";
</style>
</head>
<body class="nav_closed">
<?php require_once 'header.html'; ?>
<?php require_once 'nav.html'; ?>
<main>
<h3>Derniers articles</h3>
<section id="_quick_link">
<a href="#">
<h4>Tisane pour passer l'hiver sereinement</h4>
<img src="img/tea_lemon.jpg" alt="tisane au miel"/>
<p>Découvrez la recette de notre tisane spéciale anti-maux de l'hiver.</p>
</a>
<a href="#">
<h4>Dents sensibles ? Une étude nous dit pourquoi</h4>
<img src="img/acid_citrus.jpg" alt="acide citron"/>
<p>Une récente étude a mis en évidence pourquoi nos dents sont parfois sensibles au jus de citron.
</p>
</a>
<a href="#">
<h4>Recette pour pouvoir chanter à la montagne</h4>
<img src="img/honey_lemon.jpg" alt="cardio"/>
<p>Retrouvez notre recette pour protéger votre gorge sur les pistes de ski</p>
</a>
</section>
</main>
<?php require_once 'footer.php'; ?>
</body>
</html>