-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (155 loc) · 6 KB
/
index.html
File metadata and controls
158 lines (155 loc) · 6 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This is a solution to the Social proof section challenge on Frontend Mentor"
/>
<meta
property="og:title"
content="Social proof section challenge - Frontend Mentor"
/>
<meta
property="og:description"
content="This is a solution to the Social proof section challenge on Frontend Mentor coded by Alamin"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/Social-proof-section/0173a61b924d917ae64495bf2fe59730052d2034/design/Desktop-preview.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<title>Frontend Mentor | Social proof section</title>
</head>
<body>
<main>
<div class="most-top-container">
<section class="upper-section">
<div class="upper-section__left">
<h1 class="upper-section__main-header">
10,000+ of our users love our products.
</h1>
<p class="upper-section__brief">
We only provide great products combined with excellent customer
service. See what our satisfied customers are saying about our
services.
</p>
</div>
<div class="upper-section__right">
<div class="upper-section__right__contents reviews">
<div>
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
</div>
<p>Rated 5 Stars in Reviews</p>
</div>
<div class="upper-section__right__contents guru">
<div>
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
</div>
<p>Rated 5 Stars in Report Guru</p>
</div>
<div class="upper-section__right__contents">
<div>
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
<img src="images/icon-star.svg" alt="" aria-hidden="true" />
</div>
<p>Rated 5 Stars in BestTech</p>
</div>
</div>
</section>
<section class="bottom-section">
<div class="bottom-section__card colton">
<div class="card__profile">
<img
class="card__avater"
src="images/image-colton.jpg"
alt="colton's photo"
/>
<div class="profile__info">
<p class="profile__name">Colton Smith</p>
<p class="profile_verify">Verified Buyer</p>
</div>
</div>
<p class="comment">
"We needed the same printed design as the one we had ordered a
week prior. Not only did they find the original order, but we also
received it in time. Excellent!"
</p>
</div>
<div class="bottom-section__card irene">
<div class="card__profile">
<img
class="card__avater"
src="images/image-irene.jpg"
alt="irene's photo"
/>
<div class="profile__info">
<p class="profile__name">Irene Roberts</p>
<p class="profile_verify">Verified Buyer</p>
</div>
</div>
<p class="comment">
"Customer service is always excellent and very quick turn around.
Completely delighted with the simplicity of the purchase and the
speed of delivery."
</p>
</div>
<div class="bottom-section__card">
<div class="card__profile">
<img
class="card__avater"
src="images/image-anne.jpg"
alt="anne's photo"
/>
<div class="profile__info">
<p class="profile__name">Anne Wallace</p>
<p class="profile_verify">Verified Buyer</p>
</div>
</div>
<p class="comment">
"Put an order with this company and can only praise them for the
very high standard. Will definitely use them again and recommend
them to everyone!"
</p>
</div>
</section>
</div>
</main>
<footer>
<p class="attribution">
Coded by <a href="https://github.com/CodeWithAlamin">Alamin</a>.
Challenge by
<a
href="https://www.frontendmentor.io/profile/CodeWithAlamin"
target="_blank"
>Frontend Mentor</a
>.
</p>
</footer>
</body>
</html>