-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.06 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.06 KB
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
<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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id = "flex-container">
<div id="lumen-response">
<center><h2 class="response-tag">Predicción</h2></center>
</div>
<div id="algo-response">
<center><h2 class="response-tag">Color</h2></center>
</div>
</div>
<center>
<h1>Lumen</h1>
<h2>Simulador de la percepción cromática del ojo humano</h2>
</center>
<form action="javascript:void(0);" id="form">
<label>nm:</label> <input type="number" id="wavelength" onchange="setColor(this.value)" min="380" max="720" autofocus="true">
</form>
<script src="main.js"></script>
<footer id="footer">
<a href="https://github.com/AlexTatis/lumen">
<img src="./github.png" alt="" id="github-logo">
</a>
</footer>
</body>
</html>