-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathvanilla.html
More file actions
44 lines (30 loc) · 1.11 KB
/
vanilla.html
File metadata and controls
44 lines (30 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanilla</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">Vanilla</h1>
<div class="description">
Our vanilla ice cream is a very well known flavor.
We use reall vanilla to flavor our vanilla ice cream.
Do you know how you can tell if reall vanilla was used for making the ice cream?
You will see tiny black specks in the ice cream ! That's the crushed vanilla !
Here are some of the countries where vanilla is grown and harvested:
<ul>
<li>Madagascar</li>
<li>Indonesia</li>
<li>Mexico</li>
<li>Papua New Guinea</li>
<li>China</li>
</ul>
<img src="img/vanilla.jpg">
<a href="index.html"><button type="button">Back</button></a>
</div>
</div>
</body>
</html>