-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 2.04 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Bootcamp Testimonials Slider</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="tanya">
<div class="testomonial">
<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 class="name-title">
<span class="name">Tanya Sinclair</span>
<span class="title">UX Engineer</span>
</div>
</div>
<div class="image__container">
<img src="./images/image-tanya.jpg" alt="image-tanya">
<div class="nav_buttons">
<button class="prev__button"></button>
<button class="next__button"></button>
</div>
</div>
</div>
<div class="john">
<div class="testomonial">
<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 class="name-title">
<span class="name">John Tarkpor</span>
<span class="title">Junior Front-end Developer</span>
</div>
</div>
<div class="image__container">
<img src="./images/image-john.jpg" alt="image-john">
<div class="nav_buttons">
<button class="prev__button"></button>
<button class="next__button"></button>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>