-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.44 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
29
30
<!DOCTYPE html>
<html manifest="rgbtone.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Convert RGB to HEX to RGB</title>
<meta name="description" content="RGBTONE is a simple HEX to RGB (and vise versa) color converting app." />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="shortcut icon" href="assets/favicon.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="RGBTONE">
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<div class="container">
<form action="/" method="get" id="form">
<label for="hex" class="screen-reader-text">Hex #. Shorthand notation is supported. You do not need to include the #.</label>
<input type="text" id="hex" name="hex" placeholder="#dc5a23" spellcheck="false" autocorrect="off" autocapitalize="off" autocomplete="off" />
<label for="rgb" class="screen-reader-text">RGB Values. Separate each color value with a comma.</label>
<input type="text" id="rgb" name="rgb" placeholder="172, 209, 35" spellcheck="false" autocorrect="off" autocapitalize="off" autocomplete="off" />
<input type="submit" name="submit" value="Save Color">
</div>
</div>
<div id="saved-colors"></div>
<button id="clear" title="Clear saved colors">×</button>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>