-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.html
90 lines (71 loc) · 3.38 KB
/
item.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
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>item</title>
<link rel="stylesheet" href="item.css">
</head>
<body>
<div class="between">
<div class="inner">
<div class="firstpart">
<img class="apple" 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="tagline">
<div>
<img class="applerotation greenapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537302064/codepen/delicious-apples/green-apple2.png"
alt="green apple">
</div>
<div>
<img class="applerotation greenapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537303532/codepen/delicious-apples/half-apple.png"
alt="half apple">
</div>
<div>
<img class="applerotation greenapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537303160/codepen/delicious-apples/green-apple-flipped.png"
alt="green apple">
</div>
<div>
<img class="applerotation greenapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537303708/codepen/delicious-apples/apple-top.png"
alt="apple top">
</div>
</div>
</div>
<div class="outer">
<div class="outerfill">
<div>
<h2>Delicious Apples</h2>
<p style="color: grey;">Code 45963</p>
<p style="color: red; font-size: 20px;"><b>Rs</b><span style="color: red; font-size: 50px; padding-left: 12px; " >70</span></p>
<b>SELECT A COLOR</b>
<div class="secondtagline">
<div>
<img class="applerotation greenapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537302064/codepen/delicious-apples/green-apple2.png"
alt="green apple">
</div>
<div>
<img class="applerotation yellowapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537302752/codepen/delicious-apples/yellow-apple.png"
alt="yellow apple">
</div>
<div>
<img class="applerotation redapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537302427/codepen/delicious-apples/orange-apple.png"
alt="orange apple">
</div>
<div>
<img class="applerotation redapple" src="https://res.cloudinary.com/john-mantas/image/upload/v1537302285/codepen/delicious-apples/red-apple.png"
alt="red apple">
</div>
</div>
<h3>BENEFITS</h3>
<ul>
<li>Apples are nutricious</li>
<li>Apples may be good for weight loss</li>
<li>Apples may be good for bone health</li>
<li>They're linked to a lowest risk of diabetes</li>
</ul>
<button>ADD TO CART</button>
</div>
</div>
</div>
</div>
</body>
</html>