-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (87 loc) · 3.54 KB
/
index.html
File metadata and controls
97 lines (87 loc) · 3.54 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
<!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="Frontend Mentor Social Proof Section - Check out what our satisfied customers are saying about our products and excellent customer service. Rated 5 stars in Reviews, Report Guru, and BestTech.">
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicon-32x32.png"
/>
<title>Frontend Mentor | Social proof section</title>
<link rel="stylesheet" href="style.css">
<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@100..900&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="section-top">
<header class="left-section">
<h1 class="section-title">
10,000+ of our users love our products.
</h1>
<p class="section-description">
We only provide great products combined with excellent customer service.
See what our satisfied customers are saying about our services.
</p>
</header>
<div class="right-section">
<h2>Rated 5 Stars in Reviews</h2>
<h2>Rated 5 Stars in Report Guru</h2>
<h2>Rated 5 Stars in BestTech</h2>
</div>
</div>
<div class="section-down">
<div class="testimonials testimonial-1">
<div class="author-details">
<img src="images/image-colton.jpg" alt="Colton Smith's photo">
<p class="author-name">
Colton Smith
<span class="verification-status">
Verified Buyer
</span>
</p>
</div>
<p class="testimonial-paragraph">
"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="testimonials testimonial-2">
<div class="author-details">
<img src="images/image-irene.jpg" alt="Irene Roberts's photo">
<p class="author-name">
Irene Roberts
<span class="verification-status">
Verified Buyer
</span>
</p>
</div>
<p class="testimonial-paragraph">
"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="testimonials testimonial-3">
<div class="author-details">
<img src="images/image-anne.jpg" alt="Irene Roberts's photo">
<p class="author-name">
Anne Wallace
<span class="verification-status">
Verified Buyer
</span>
</p>
</div>
<p class="testimonial-paragraph">
"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>
</div>
</main>
</body>
</html>