-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!-- Include the Material Icons font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>Document</title>
</head>
<body>
<section class="product">
<div class="product__photo">
<div class="photo-container">
<div class="photo-main">
<div class="controls">
<i class="material-icons">share</i>
<i class="material-icons">favorite_border</i>
</div>
<img src="https://res.cloudinary.com/john-mantas/image/upload/v1537291846/codepen/delicious-apples/green-apple-with-slice.png" alt="green apple slice">
</div>
<div class="photo-album">
<ul style="list-style-type: none;">
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537302064/codepen/delicious-apples/green-apple2.png" alt="green apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537303532/codepen/delicious-apples/half-apple.png" alt="half apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537303160/codepen/delicious-apples/green-apple-flipped.png" alt="green apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537303708/codepen/delicious-apples/apple-top.png" alt="apple top"></li>
</ul>
</div>
</div>
</div>
<div class="product__info">
<div class="title">
<h1>Delicious Apples</h1>
<span>COD: 45999</span>
</div>
<div class="price">
R$ <span>7.93</span>
</div>
<div class="variant">
<h3>SELECT A COLOR</h3>
<ul>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537302064/codepen/delicious-apples/green-apple2.png" alt="green apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537302752/codepen/delicious-apples/yellow-apple.png" alt="yellow apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537302427/codepen/delicious-apples/orange-apple.png" alt="orange apple"></li>
<li><img src="https://res.cloudinary.com/john-mantas/image/upload/v1537302285/codepen/delicious-apples/red-apple.png" alt="red apple"></li>
</ul>
</div>
<div class="description">
<h3>BENEFITS</h3>
<ul>
<li> Apples are nutricious</li>
<li> Apples may be good for bone health</li>
<li> Apples may be good for weight loss</li>
<li> They're linked to a lowest risk of diabetes</li>
</ul>
</div>
<button class="buy--btn">ADD TO CART</button>
</div>
</section>
</body>
</html>