-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlemon.html
More file actions
42 lines (29 loc) · 999 Bytes
/
lemon.html
File metadata and controls
42 lines (29 loc) · 999 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lemon</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">Lemon</h1>
<div class="description">
Our lemon ice cream is very fresh tasting and especially nice in the summer.
We use fresh lemons for our lemon ice cream.
Here are some of the countries where lemons are harvested:
Sebastian added this
<ul>
<lu>India</li>
<li>Mexico</li>
<li>China</li>
<li>Argentina</li>
<li>Brazil </li>
</ul>
<img src="img/lemon.jpg">
<a href="index.html"><button type="button">Back</button></a>
</div>
</div>
</body>
</html>