forked from CodewizardsHQ-Alex/H33-08-starter-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banana.html
48 lines (37 loc) · 1.27 KB
/
banana.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banana</title>
<link rel="stylesheet" href="style.css">
</head>
<body><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banana</title>
</head>
<body>
<div class="container">
<h1 class="title">Banana</h1>
<div class="description">
Our banana ice cream is really good and even has little chunks of banana in it.
Did you know that the banana is botanically speaking a berry?
Here are some of the countries where bananas grow:
<!-- I think there is something wrong in this part -->
<ul>
<li>India</li>
<li>China</li>
<li>Phillipines</li>
<li>Ecuador</li>
<li>Indonesia</li>
</ul>
<!-- --------------------------------------------- -->
<img src="">
<a href="index.html"><button type="button">Back</button></a>
</div>
</div>
</body>
</html>