-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testimonials Slider</title>
<link
href="https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="./script.js" defer></script>
</head>
<body>
<div class="container">
<div class="box-1" id="testimonial-1">
<div class="text">
<h1>
“ If you want to lay the best foundation possible I’d recommend
taking this course. The depth the instructors go into is incredible.
I now feel so confident about starting up as a professional
developer. ”
</h1>
<div class="name">
<h3>John Tarkpor</h3>
<h4>Junior Front-end Developer</h4>
</div>
</div>
<div class="image">
<img src="./images/image-john.jpg" alt="" />
<div class="button">
<img src="./images/icon-prev.svg" id="prev-1" alt="Previous" />
<img src="./images/icon-next.svg" id="next-1" alt="Next" />
</div>
</div>
</div>
<div class="box-1" id="testimonial-2">
<div class="text">
<h1>
“ I've been interested in coding for a while but never taken the
jump, until now. I couldn't recommend this course enough. I'm now in
the job of my dreams and so excited about the future. ”
</h1>
<div class="name">
<h3>Tanya Sinclair</h3>
<h4>UX Engineer</h4>
</div>
</div>
<div class="image">
<img src="./images/image-tanya.jpg" alt="" />
<div class="button">
<img src="./images/icon-prev.svg" id="prev-2" alt="Previous" />
<img src="./images/icon-next.svg" id="next-2" alt="Next" />
</div>
</div>
</div>
</div>
<div class="footer">
<p>Made with ❤️ by Abhishek Gurjar</p>
</div>
</body>
</html>