-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 719 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
<title>Carouselito</title>
<meta charset="UTF-8">
<meta name="" content="">
<meta name="" content="">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="carousel-container">
<div id="previous-image-container" class="carousel-controls">
<img id="arrow-left" class="arrow-img" src="img/arrow_left.png" alt="Left arrow">
</div>
<div id="next-image-container" class="carousel-controls">
<img id="arrow-right" class="arrow-img" src="img/arrow_right.png" alt="Right arrow">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>