-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
89 lines (82 loc) · 3.88 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
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example Mock with BEM CSS standard</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow|Pragati+Narrow&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div class="product">
<div class="product__photo--center">
<img class="product--photo" src="./assets/photo.png">
</div>
<div class="product__content">
<h2 class="product__title">Ribbed boots holographi</h2>
<div class="product__rating rating">
<div class="rating__stars">
<i class="rating__star ratiing__star--filled fa fa-star"></i>
<i class="rating__star ratiing__star--filled fa fa-star"></i>
<i class="rating__star ratiing__star--filled fa fa-star"></i>
<i class="rating__star fa fa-star"></i>
</div>
<span class="rating__count">122 reviews</span>
<a class="rating__add" href="#">Write a review</a>
</div>
<div class="product__info">
<div class="product__info--row">
<span class="product__info-label">Brand</span>
<span class="product__info-row"> JBL </span>
</div>
<div class="product__info--row">
<span class="product__info-label">Brand</span>
<span class="product__info-row"> JBL </span>
</div>
<div class="product__info--row">
<span class="product__info-label">Brand</span>
<span class="product__info-row"> JBL </span>
</div>
</div>
<div class="product__price price">
<div class="price__current"> $98.00</div>
<div class="price__info">
<span class="price__old">$200.00</span>
<span class="price__discount">You save 31%</span>
</div>
<div class="price__actions">
<a class="price__save btn btn--primary" href="#">+ Save</a>
<a class="price__buy btn btn--secondary btn--uppercase btn--wide" href="#">Buy Now</a>
</div>
</div>
<div class="product__desc">
<h3 class="product__desc-title title-small">Description</h3>
<p class="product__text">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Iste
voluptatem modi officiis at dolorem libero reprehenderit quidem
delectus iure facere.
</p>
</div>
<ul class="product__socials socials">
<li class="socials__item">
<a class="socials__link socials__link--fb" href="#">
<i class="fab fa-facebook-f"> </i>
</a>
</li>
<li class="socials__item">
<a class="socials__link socials__link--tw" href="#">
<i class="icon fab fa-twitter"></i>
</a>
</li>
<li class="socials__item">
<a class="socials__link socials__link--g" href="#">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>