-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (58 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Coding Bootcamp Testimonials Slider</title>
</head>
<body>
<div class="testimonial-container">
<div>
<div class="testimonial testimonial-1">
<div class="text-container">
<div class="description">
<p>
“ 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. ”
</p>
</div>
<div class="about">
<p class="name">Tanya Sinclair</p>
<p class="role">UX Engineer</p>
</div>
</div>
<div class="image-container">
<img src="images/image-tanya.jpg" alt="" />
<div class="btns-container">
<img class="prev" src="images/icon-prev.svg" alt="" /><img class="next" src="images/icon-next.svg" alt="" />
</div>
</div>
</div>
<div class="testimonial testimonial-2">
<div class="text-container">
<div class="description">
<p>“ 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>
<div class="about">
<p class="name">John Tarkpor</p>
<p class="role">Junior Front-end Developer</p>
</div>
</div>
<div class="image-container">
<img src="images/image-john.jpg" alt="">
<div class="btns-container">
<img class="prev" src="images/icon-prev.svg" alt="" /><img class="next" src="images/icon-next.svg" alt="" />
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>