-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Gateau au chocolat</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="recette.css"/>
</head>
<body>
<div class="contenu">
<div class="centre categorie">
<p class="categorie">Home</p>
</div>
<h1>Site de cuisine</h1>
<div class="separateur"></div>
<!-- Mon commentaire HTML -->
<div class="centre">
<p class="description">"Ce site contient de nombreuses super recettes délicieuses."</p>
</div>
<div>
<div class="home">
<h2 style="margin-bottom: 5px;">Recettes</h2>
<div class="separateur" style="margin-bottom: 10px;"></div>
<div class="ingredients">
<p><a href="gateau_choco.html">Gateau au choco</a></p>
<p><a href="cookies.html">Cookie</a></p>
</div>
</div>
</div>
</div>
</body>
</html>