-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (22 loc) · 871 Bytes
/
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
<!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>Slider - JS and CSS</title>
<!-- Include for CSS -->
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<!-- Section for wrapping the carousel slider with an internal container for the articles and and navigation -->
<section class="carouselwrapper">
<section class="carouselcontainer"></section>
<button class="prev"><i class="fa fa-angle-left"></i></button>
<button class="next"><i class="fa fa-angle-right"></i></button>
</section>
<!-- Include for javaScript -->
<script src="/assets/js/slides.js" defer></script>
<script src="/assets/js/app.js" defer></script>
</body>
</html>