-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>q-place</title>
<link rel="stylesheet" href="q-place.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div id="top-bar">
<span id="version">v0.4.0</span>
<span id="coordinates-label">Coordinates: <span id="coordinates">X, Y</span></span>
<span id="color-label">Color: <span id="current-color">#RRGGBB</span></span>
<span id="user-label">Last User: <span id="last-user">NAME</span></span>
<span id="timestamp-label">Timestamp: <span id="timestamp">TIME</span></span>
<input type="color" id="color-picker">
<button id="publish-button">Publish</button>
<button id="replay-button">Replay</button>
</div>
<div id="slider-bar">
<!-- Added History Slider -->
<input type="range" id="history-slider" min="0" max="0" value="0" step="1" style="width: 100%;">
</div>
<div id="pixel-art"></div>
<script src="q-place.js"></script>
</body>
</html>