-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (73 loc) · 3.06 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
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<!-- Open Graph -->
<meta property="og:title" content="Coding Bootcamp Testimonials Slider">
<meta property="og:site_name" content="Coding Bootcamp Testimonials Slider">
<meta property="og:url" content="http://coding-bootcamp-testimonials.netlify.com">
<meta property="og:description"
content="Frontend Mentor is a website here web developers practice and improve their frontend development skills. This website is one of the challenges.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://coding-bootcamp-testimonial.netlify.app/images/image-john.jpg">
<title>DevMushref | Coding Bootcamp Testimonials Slider</title>
<!-- Links -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="container">
<div class="slider">
<div class="slide fade">
<div class="slide-text">
<p class="testimonial">
“ 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="profile photo of Tanya">
</div>
<div class="arrows">
<button class="arrow-left" onClick="clickSlide(-1)">
<img src="images/icon-prev.svg" alt="left arrow svg prev icon">
</button>
<button class="arrow-right" onClick="clickSlide(1)">
<img src="images/icon-next.svg" alt="right arrow svg next icon">
</button>
</div>
</div>
<div class="slide fade">
<div class="slide-text">
<p class="testimonial">
“ 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="profile photo of John">
</div>
<div class="arrows">
<button class="arrow-left" onClick="clickSlide(-1)">
<img src="images/icon-prev.svg" alt="left arrow svg prev icon">
</button>
<button class="arrow-right" onClick="clickSlide(1)">
<img src="images/icon-next.svg" alt="right arrow svg next icon">
</button>
</div>
</div>
</div>
</div>
<script async src="slider.js"></script>
</body>
</html>