-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (61 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Janet Thieu">
<meta name="description" content="Solution to Frontend Mentor - Social Proof Section Challenge (Newbie: HTML, CSS)">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Spartan:wght@400;500;700&display=swap">
<title>Frontend Mentor | Social proof section</title>
</head>
<body>
<div class="content-container">
<header class="intro">
<h1>10,000+ of our users love our products.</h1>
<p class="subtitle">We only provide great products combined with excellent customer service. See what our satisfied customers are saying about our services.</p>
</header>
<section class="ratings-container">
<div class="ratings rating-a">
<span class="stars">⭐⭐⭐⭐⭐</span>
<span class="company-rated">Rated 5 Stars in Reviews</span></div>
<div class="ratings rating-b">
<span class="stars">⭐⭐⭐⭐⭐</span>
<span class="company-rated">Rated 5 Stars in Report Guru</span></div>
<div class="ratings rating-c">
<span class="stars">⭐⭐⭐⭐⭐</span>
<span class="company-rated">Rated 5 Stars in BestTech</span></div>
</section>
<section class="testimonials-container">
<div class="card-a">
<img class="avatar" src="images/image-colton.jpg" alt="image-colton">
<p class="names">Colton Smith</p>
<p class="verified">Verified Buyer</p>
<p class="testimonials">"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="card-b">
<img class="avatar" src="images/image-irene.jpg" alt="image-irene">
<p class="names">Irene Roberts</p>
<p class="verified">Verified Buyer</p>
<p class="testimonials">"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="card-c">
<img class="avatar" src="images/image-anne.jpg" alt="image-anne">
<p class="names">Anne Wallace</p>
<p class="verified">Verified Buyer</p>
<p class="testimonials">"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>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/janetthieu/social-proof-section-master">Janet Thieu</a>.
</footer>
</div>
</body>
</html>