-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 2.12 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 2.12 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
<!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="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Coding Bootcamp Testimonials Slider</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="slider">
<div class="slide slide-1">
<div class="slide-text">
<img src="images/pattern-quotes.svg" alt="">
<p class="p-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. ”
</p>
<p class="author">Tanya Sinclair <span>UX Engineer</span></p>
</div>
<div class="slide-img">
<img src="images/image-tanya.jpg" alt="img">
</div>
</div>
<div class="slide slide-2">
<div class="slide-text">
<img src="images/pattern-quotes.svg" alt="">
<p class="p-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>
<p class="author">John Tarkpor
<span>Junior Front-end Developer</span>
</p>
</div>
<div class="slide-img">
<img src="images/image-john.jpg" alt="img">
</div>
</div>
<div class="buttons">
<div class="next"></div>
<div class="prev"></div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">HEMANT M MEHTA</a>.
</div>
<script src="script.js"></script>
</body>
</html>