generated from acciojob/accio-assignment-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
68 lines (64 loc) · 2.44 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<section class="product">
<div class="product__photo">
<div class="photo-container">
<div class="photo-main">
<div class="controls">
<i class="fa fa-share-alt"></i>
<i class="fa fa-heart-o"></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>
<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>CODE: 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">
</div>
</div>
</section>
</body>
</html>