-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.13 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
<!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">
<title>image Slideshow</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="slider-container">
<div class="image">
<img src="./images/tanya.svg" alt="">
</div>
<div class="navigation">
<img class="prev" src="./images/icon-prev.svg" alt="">
<img class="next" src="./images/icon-next.svg" alt="">
</div>
</div>
<div class="feedback">
<img src="./images/pattern-quotes.svg" alt="">
<p>“ 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>
<h4 class="name">Tanya Sinclair<span class="role">UX Engineer</span></h4>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>