-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 1.97 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
<!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">
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css">
<title>Testimonial Box</title>
</head>
<body>
<aside class="info">
<h2 class="project">LearningByCoding</h2>
<p class="challenge">Challenge #5</p>
<p class="tools">HTML CSS JavaScript</p>
<p class="author">NathLô WebDev</p>
</aside>
<header>
<h1 class="title">Clients Testimonials</h1>
</header>
<section class="testimonials-container">
<div class="progress-bar"></div>
<i class="fas fa-quote-right fa-quote"></i>
<i class="fas fa-quote-left fa-quote"></i>
<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>
<figure class="user">
<img src="https://randomuser.me/api/portraits/women/46.jpg" alt="user" class="user-image">
<figcaption class="user-details">
<h4 class="username">Miyah Myles</h4>
<p class="role">Marketing</p>
</figcaption>
</figure>
</section>
<script src="script.js"></script>
</body>
</html>