-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Slider</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="animate.min.css">
<script src="jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<h1>Slider</h1>
<div class="slider-outer">
<img src="img/arrow-left.png" class="prev" alt="Prev">
<div class="slider-inner">
<img src="img/image1.webp" class="active fadeIn animated" alt="Image1">
<video height="300" width="500" muted>
<source src="vid/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<img src="img/image2.webp" alt="image2">
<video height="300" width="500" muted>
<source src="vid/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<img src="img/image3.webp" alt="image3">
<video height="300" width="500" muted>
<source src="vid/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<img src="img/image4.webp" alt="image4">
</div>
<img src="img/arrow-right.png" class="next" alt="Next">
</div>
</div>
</body>
</html>