-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (51 loc) · 1.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="INDEX, FOLLOW">
<meta name="description" content="Full Screen jQuery Content Slider.">
<meta name="author" content="">
<title>Full Screen jQuery Content Slider</title>
<link rel="stylesheet" href="css/slider.css">
<script src="js/slider.js" defer></script>
</head>
<body>
<!-- Slider -->
<article class="slider">
<section class="slide">
<img src="img/1.jpg" alt="">
<div class="slide-content">
<p class="slide-title">jQuery Slider</p>
</div>
</section>
<section class="slide">
<img src="img/2.jpg" alt="">
<div class="slide-content">
<p class="slide-title">Responsive</p>
</div>
</section>
<section class="slide">
<img src="img/3.jpg" alt="">
<div class="slide-content">
<p class="slide-title">Retina Ready</p>
</div>
</section>
<section class="slide">
<img src="img/4.jpg" alt="">
<div class="slide-content">
<p class="slide-title">Mobile Ready</p>
</div>
</section>
<nav class="slider-nav">
<span class="prev-slide"></span>
<span class="next-slide"></span>
</nav>
</article>
<!-- end Slider -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/lib/jquery-v3.4.1.js"><\/script>');
</script>
</body>
</html>