-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 859 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<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>input-ex</title>
</head>
<body>
<div class="img_controls">
<div class="img_controls-control"><img src="/image/1.jpg" id="1"></div>
<div class="img_controls-control"><img src="/image/2.jpg" id="2"></div>
<div class="img_controls-control"><img src="/image/3.jpg" id="3"></div>
<div class="img_controls-control"><img src="/image/4.jpg" id="4"></div>
<div class="img_controls-control"><img src="/image/5.jpg" id="5"></div>
</div>
<div class="controls_range">
<input type="range" id="imgRange" min="1" max="5" value="3" step="1">
</div>
<script src="main.js"></script>
</body>
</html>