-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400;700&display=swap" rel="stylesheet">
<title>Image Slider</title>
</head>
<body>
<main>
<div id="bg-left"></div>
<div id="bg-right"></div>
<div id="container">
<div id="viewer">
<button id="arrow-left">
<img src="./assets/arrow.svg" alt="left arrow">
</button>
<div id="photo">
<div id="description">
<h1 id="title"></h1>
<p id="text"></p>
</div>
</div>
<button id="arrow-right">
<img src="./assets/arrow.svg" alt="right arrow">
</button>
</div>
<div id="navigation">
</div>
</div>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>