-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 2.8 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Gateau au chocolat</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="recette.css"/>
<!-- link = charger un fichier
rel="stylesheet" indique qu'il s'agit d'un fichier css
href="URL" > relative, locale ou du web
-->
</head>
<body>
<div class="contenu">
<div class="centre categorie">
<p class="categorie">Recette</p>
</div>
<h1>Gateau au chocolat</h1>
<div class="separator"></div>
<div class="centre description">
<p class="description">"Cette recette facile du gateau au chocolat est un grand classique qui fera plaisir à vos enfants."</p>
</div>
<div class="info">
<img class ="centre info" src="gateau.jpg">
<table class="info">
<tr>
<th>Difficulté</th>
<th>Préparation</th>
<th>Cuisson</th>
<th>Temps total</th>
</tr>
<tr>
<td>facile</td>
<td>10 min</td>
<td>25 min</td>
<td>35 min</td>
</tr>
</table>
</div>
<div>
<div class="colonne colonne1">
<h2>Ingrédients</h2>
<div class="ingredients">
<p>Chocolat noir: 200g</p>
<p>Beurre: 200g</p>
<p>Sucre: 150g</p>
<p>Farine: 80g</p>
</div>
</div>
<div class="colonne colonne2">
<h2>Préparation</h2>
<table class="preparation">
<tr>
<td><p class="numero">1</p></td>
<td class="preparation_etape">Faire fondre le chocolat avec le beurre</td>
</tr>
<tr>
<td><p class="numero">2</p></td>
<td class="preparation_etape">Mélanger le sucre, les oeufs et la farine</td>
</tr>
<tr>
<td><p class="numero">3</p></td>
<td class="preparation_etape">Mélanger le tout pour faire une pate</td>
</tr>
<tr>
<td><p class="numero">4</p></td>
<td class="preparation_etape">Mettre au four.</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>