-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
38 lines (38 loc) · 986 Bytes
/
Copy pathindex3.html
File metadata and controls
38 lines (38 loc) · 986 Bytes
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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RangeRanker</title>
<link rel="stylesheet" href="styles3.css" />
</head>
<body>
<div id="app">
<div id="image-container">
<img
src="path/to/image1.jpg"
alt="Item 1"
class="draggable"
draggable="true"
id="item1"
/>
<img
src="path/to/image2.jpg"
alt="Item 2"
class="draggable"
draggable="true"
id="item2"
/>
<!-- Add more images as needed -->
</div>
<div id="range-chart">
<div class="range-label">A</div>
<div class="range-label">B</div>
<div class="range-label">C</div>
<div class="range-label">D</div>
<div class="range-label">E</div>
</div>
</div>
<script src="script3.js"></script>
</body>
</html>