-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 896 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
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Slider</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="slider">
<div class="page" style="background-color: red"></div>
<div class="page" style="background-color: orange"></div>
<div class="page" style="background-color: yellow"></div>
<div class="page" style="background-color: green"></div>
<div class="page" style="background-color: blue"></div>
<div class="page" style="background-color: navy"></div>
<div class="page" style="background-color: purple"></div>
</div>
<div id="left" class="arrow"></div>
<div id="right" class="arrow"></div>
<script src="script.js"></script>
</body>
</html>