-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Testimonial Box Switcher</title>
</head>
<body>
<div class="testimonial-container">
<div class="progress-bar"></div>
<div class="fas fa-quote-right fa-quote"></div>
<div class="fas fa-quote-left fa-quote"></div>
<p class="testimonial">
I've worked with literally hundreds of HTML/CSS developers and I have to
say the top spot goes to this guy. This guy is an amazing developer. He
stresses on good, clean code and pays heed to the details. I love
developers who respect each and every aspect of a throughly thought out
design and do their best to put it in code. He goes over and beyond and
transforms ART into PIXELS - without a glitch, every time.
</p>
<div class="user">
<img
src="https://randomuser.me/api/portraits/women/46.jpg"
alt="user"
class="user-image"
/>
<div class="user-details">
<h4 class="username">Miyah Myles</h4>
<p class="role">Marketing</p>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>