-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (68 loc) · 2.99 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="box">
<div class="content">
<img src="images/apple.png">
<p>This versatile fruit can be enjoyed as a snack, mashed into sauce or even cooked into desserts</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/orange.png">
<p>These citrus fruits are surrounded by a tough peel, encasing sweet and tart flavors inside</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/blueberry.png">
<p>These tasty little fruits are often baked into desserts, added to breakfasts or enjoyed alone.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/coconut.png">
<p>Coconut flesh is high in fat and can be dried or eaten fresh or processed into “coconut milk”.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/dragon-fruit.png">
<p>This vibrant fruit is known for its red skin and white pulp. This unique fruit can be enjoyed with salads, yogurt or as a standalone snack.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/mango.png">
<p>This soft and tangy drupe is enjoyed raw and used in desserts like ice cream. Mangoes are super sweet, which makes them a perfect sugar replacement in smoothies.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/papaya.png">
<p>This unique fruit can be enjoyed atop a serving of yogurt, chopped into salsa or blended into a smoothie with other types of fruit.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/pomegranate.png">
<p>Pomegranates are made up of a thick red skin and hundreds of red seeds inside. These bright red treats are used in desserts, juices and as garnishes.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/strawberry.png">
<p>These bright red fruits are a favorite for people all over the world. Strawberries are delicious when eaten fresh, added to desserts and used in jams or jellies.</p>
</div>
</div>
</div>
</body>
</html>