forked from dicer2000/Lab10_Typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (19 loc) · 674 Bytes
/
index.html
File metadata and controls
23 lines (19 loc) · 674 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>
<meta charset="UTF-8" />
<title>Color Combo Creator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>🎨 Color Combo Creator</h1>
<label>R: <input id="red" type="number" min="0" max="255" value="120"></label>
<label>G: <input id="green" type="number" min="0" max="255" value="200"></label>
<label>B: <input id="blue" type="number" min="0" max="255" value="255"></label>
<div id="preview" class="preview-box"></div>
<button id="save">Save Combo</button>
<h2>Saved Colors</h2>
<div id="saved" class="saved-list"></div>
<script type="module" src="dist/main.js"></script>
</body>
</html>