-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 1.08 KB
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>
<head>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
</head>
<body>
<div id="xy">x: column, y: row</div>
<div id="date">date</div>
<div class="inputField">
<input type="number" id="yearInput" min="1900" max="2100" step="1" value="2025">
<div class="arrowButtons">
<button class="arrowUp">▲</button>
<button class="arrowDown">▼</button>
</div>
</div>
<div id="gridContainer"></div>
<div id="colorPalette"></div>
<div id="buttonContainer">
<button id="clearButton">Clear</button>
<button id="randomButton">Randomize</button>
<button id="pushButton">Push</button>
</div>
<script src="script.js"></script>
</body>
</html>