-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathstrawberry.html
More file actions
45 lines (30 loc) · 1.11 KB
/
strawberry.html
File metadata and controls
45 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
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strawberry</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">Strawberry</h1>
<div class="description">
Our strawberry ice cream is a very well known flavor.
Still we try to make our ice cream unique by using fresh strawberries in the process of making the ice cream.
Here are some of the countries where we get our strawberries from :
<!-- I think there is something wrong in this part -->
<ul>
<li>China</li>
<li>United States</li>
<li>Mexico</li>
<li>Egypt</li>
<li>Turkey</li>
</ul>
<!-- ------------------------------------------ ----->
<img src="">
<a href="index.html"><button type="button">Back</button></a>
</div>
</div>
</body>
</html>