-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (62 loc) · 2.89 KB
/
index.html
File metadata and controls
66 lines (62 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Slider Master</title>
</head>
<body>
<section class="testmonials-container">
<div class="testmonial">
<div class="testmonial-image-container">
<div class="img">
<img class="client-img" src="template/images/image-tanya.jpg" alt="">
<div class="sliders">
<div class="slider slide-left">
<img src="template/images/icon-prev.svg" alt="">
</div>
<div class="slider slide-right">
<img src="template/images/icon-next.svg" alt="">
</div>
</div>
</div>
</div>
<div class="testmonial-text-container">
<p class="main-text">"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 life."</p>
<div class="client-info">
<p class="name">Tanya Sinclair</p>
<p class="position">UX Engineer</p>
</div>
</div>
</div>
<div class="testmonial hide">
<div class="testmonial-image-container">
<div class="img">
<img class="client-img" src="template/images/image-john.jpg" alt="">
<div class="sliders">
<div class="slider slide-left">
<img src="template/images/icon-prev.svg" alt="">
</div>
<div class="slider slide-right">
<img src="template/images/icon-next.svg" alt="">
</div>
</div>
</div>
</div>
<div class="testmonial-text-container">
<p class="main-text">“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. ”</p>
<div class="client-info">
<p class="name">John Tarkpor</p>
<p class="position">Junior Front-end Developer</p>
</div>
</div>
</div>
</section>
<footer>
<small>Challenge by <a href="https://www.frontendmentor.io">Frontend Mentor</a>. Code by <a href="#">Ayyaz Ahmed</a></small>
</footer>
<script src="app.js"></script>
</body>
</html>