-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (57 loc) · 2.44 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
<!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 href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<title>Frontend Mentor | Coding Bootcamp Testimonials Slider</title>
</style>
</head>
<body>
<main class="container">
<div class="slider">
<div class="slide">
<div class="slide__img-container">
<img src="img/image-tanya.jpg" alt="Tanya" class="slide__img">
</div>
<div class="slide__text">
<blockquote class="slide__quote">“ 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. ”
</blockquote>
<div class="slide__author">
<span class="slide__name">Tanya Sinclair</span>
<span class="slide__job">UX Engineer</span>
</div>
</div>
</div>
<div class="slide">
<div class="slide__img-container">
<img src="img/image-john.jpg" alt="John" class="slide__img">
</div>
<div class="slide__text">
<p class="slide__quote">“ 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="slide__author">
<span class="slide__name">John Tarkpor</span>
<span class="slide__job">Junior Front-end Developer</span>
</div>
</div>
</div>
<div class="buttons">
<div class="prev"></div>
<div class="next"></div>
</div>
</div>
</main>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/En-Jen" target="_blank">Jen Speak</a>.
</footer>
<script src="script.js"></script>
</body>
</html>