-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·28 lines (27 loc) · 1 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
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Simple colour picker</title>
</head>
<body>
<main>
<h1>Simple colour picker</h1>
<label for="text-color">Color:</label>
<input type="color" />
<p>
This simple colour picker is designed to look good on any device with a
responsive and adaptive dark theme
<mark>coded in HTML and CSS only</mark>. Click on the box to open a
colour palette or wheel, and choose your colour. You can easily preview
their choice as the chosen colour is visually represented within the
input field. This gives users the
<mark>ability to create visually appealing designs</mark>.
</p>
</main>
<footer><a href="https://walker84837.github.io/">Main page</a></footer>
</body>
</html>