-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (43 loc) · 1.48 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!-- TODO: change this page to only provide info on the extension, developers, etc. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ColorCue</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Lexend:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="content-container">
<h1>ColorCue</h1>
<h3>Filling the gap for color-blindness assistance right in your browser.</h3>
<div id="content">
<div id="result-container">
<h3>Your Color Blindness Test Result</h3>
<!-- dynamically filled with content based on selection -->
<h2 id="type"></h2>
</div>
<div id="color-containers">
<div class="color-container red">
<h3>Red</h3>
<h2 id="red"></h2>
</div>
<div class="color-container green">
<h3>Green</h3>
<h2 id="green"></h2>
</div>
<div class="color-container blue">
<h3>Blue</h3>
<h2 id="blue"></h2>
</div>
</div>
</div>
<a tabindex="0" href="https://enchroma.com/pages/color-blindness-test">Recalibrate your filter</a>
</div>
</body>
</html>