-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider.html
More file actions
54 lines (54 loc) · 1.95 KB
/
slider.html
File metadata and controls
54 lines (54 loc) · 1.95 KB
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
<!DOCTYPE html>
<!--[if lte IE 6]><html class="preIE7 preIE8 preIE9"><![endif]-->
<!--[if IE 7]><html class="preIE8 preIE9"><![endif]-->
<!--[if IE 8]><html class="preIE9"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>title</title>
<meta name="author" content="name">
<meta name="description" content="description here">
<meta name="keywords" content="keywords,here">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=font1|font2|etc" type="text/css">
<link rel="stylesheet" href="styles/slider.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="slider">
<button class="btn-prev">«</button>
<div class="slides-container">
<div class="slides">
<div class="slide">
<div class="slide-text">
<h2>Slide 1</h2>
<h4>Text for slide 1</h4>
</div>
</div>
<div class="slide">
<div class="slide-text">
<h2>Slide 2</h2>
<h4>Text for slide 2</h4>
</div>
</div>
<div class="slide">
<div class="slide-text">
<h2>Slide 3</h2>
<h4>Text for slide 3</h4>
</div>
</div>
<div class="slide">
<div class="slide-text">
<h2>Slide 4</h2>
<h4>Text for slide 4</h4>
</div>
</div>
</div>
</div>
<button class="btn-next">»</button>
</div>
<script src="javascript/slider-jquery.js" type="text/javascript"></script>
</body>
</html>