-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathgrapefruit.html
More file actions
37 lines (27 loc) · 973 Bytes
/
grapefruit.html
File metadata and controls
37 lines (27 loc) · 973 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grapefruit</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">Grapefruit</h1>
<div class="description">
<p>Our grapefruit icecream tastes very light and fresh. It's made from the best milk and real grapefruit.</p>
<p>These are some of the countries where grapefruit is growing:</p>
<ul>
<li>China</li>
<li>Vietnam</li>
<li>United States</li>
<li>Mexico</li>
<li>South Africa</li>
</ul>
<img src="img/grapefruit.jpg">
<a href="index.html"><button type="button">Back</button></a>
</div>
</div>
</body>
</html>