-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (45 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="stylesheet" href="stylesheet.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Coding Bootcamp Testimonials Slider</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="slide-1 ">
<div class="image-div">
<img src="images/image-tanya.jpg" alt="tanya pro pic">
</div>
<div class="navigation">
<img class="prev" src="images/icon-prev.svg" alt="">
<img class="next" src="images/icon-next.svg" alt="">
</div>
<h2> “ 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. ” </h2>
<h4>Tanya Sinclair</h4>
<p>UX Engineer</p>
</div>
<div class="slide-2 hide">
<div class="image-div">
<img src="images/image-john.jpg" alt="pro pic john">
</div>
<div class="navigation">
<img class="prev" src="images/icon-prev.svg" alt="">
<img class="next" src="images/icon-next.svg" alt="">
</div>
<h2>“ 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. ”</h2>
<h4>John Tarkpor</h4>
<p>Junior Front-end Developer</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="index.js" charset="utf-8"></script>
</body>
</html>