forked from febef/tableoftrue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 1.54 KB
/
Copy pathindex.html
File metadata and controls
49 lines (47 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table from Proposition</title>
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="./img/calculadora.svg" type="image/x-icon">
</head>
<body>
<header class="menu">
<div class="menu-box">
<span>Calculadora Lógica</span>
</div>
</header>
<section class="input">
<form action="#">
<label for="expression">Expresión:</label>
<input type="text" name="expression" id="expression" >
<input type="submit" id="resolve" value="Resolver!">
</form>
</section>
<section class="output">
<div class="sk-cube-grid hide" id="loader">
<div class="sk-cube sk-cube1"></div>
<div class="sk-cube sk-cube2"></div>
<div class="sk-cube sk-cube3"></div>
<div class="sk-cube sk-cube4"></div>
<div class="sk-cube sk-cube5"></div>
<div class="sk-cube sk-cube6"></div>
<div class="sk-cube sk-cube7"></div>
<div class="sk-cube sk-cube8"></div>
<div class="sk-cube sk-cube9"></div>
</div>
<div id="tautologia" class="hide"><h2>Es una tautologia!</h2></div>
<table>
<thead id="vars"></thead>
<tbody id="values"></tbody>
</table>
</section>
<footer>
<p>Desarrollado con ❤ en Javascript</p>
</footer>
<script src="/js/Resolver.js"> </script>
<script src="/js/main.js"> </script>
</body>
</html>