-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorPicker.html
More file actions
32 lines (26 loc) · 793 Bytes
/
Copy pathColorPicker.html
File metadata and controls
32 lines (26 loc) · 793 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tim's Funny Website</title>
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
</head>
<body>
<center>
<h1>Enter Your Color Choice</h1>
<input id="colorEdit" type="text" readonly>
<input id="colorPicker" type="color" value="#ffffff" onchange="changeColor(event)"/>
<script src="website.js"></script>
</center>
</body>
<footer>
<nav>
<a href="./index.html">Home</a>
<a href="./Content.html">Content</a>
<a href="./ColorPicker.html">ColorPicker</a>
<a href="./Anniversary.html">Anniversary 2024</a>
<a href="./Info.html">Info</a>
</nav>
</footer>
</html>