-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (75 loc) · 2.63 KB
/
index.html
File metadata and controls
85 lines (75 loc) · 2.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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>
</head>
<body>
<!-- (( MAIN CONTAINER 🎁 )) -->
<main class="main-container">
<div class="slider">
<!--(⏪ SLIDER ONE ⏩)-->
<div class="slide slide-1️⃣ fade">
<div class="slide-text">
<p class="testimonial-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>
<h1 class="author-name">Tanya Sinclair <span>UX Engineer</span></h1>
</div>
<div class="slide-img-🖼️">
<img src="./img/image-tanya.jpg" alt="tanya-img" />
</div>
</div>
<!--( SLIDER ONE )-->
<!--(⏪ SLIDER TWO ⏩)-->
<div class="slide slide-2️⃣ fade">
<div class="slide-text">
<p class="testimonial-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>
<h1 class="author-name">
John Tarkpor <span>Junior Front-end Developer</span>
</h1>
</div>
<div class="slide-img-🖼️">
<img src="./img/image-john.jpg" alt="john-img" />
</div>
</div>
<!--( SLIDER TWO )-->
<!--( SLIDER BUTTON )-->
<div class="slider-🔘">
<div class="next-⏭️"></div>
<div class="prev-⏮️"></div>
</div>
<!--( SLIDER BUTTON )-->
</div>
</main>
<!-- (( MAIN CONTAINER 🎁 )) -->
<!-- (( attribution )) -->
<footer>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://github.com/JadhavSuraj7rk">Suraj Jadhav</a>.
</div>
</footer>
<!--((⏪ MAIN JS LOGIC ⏩))-->
<script src="./js/logic.js"></script>
</body>
</html>