-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculadora Lógica</title>
<script src="main.js" async></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main">
<div class="title wrapper">
<h1 class="title">
<span class="calculadora">Calculadora de </span
><span class="logicaProposicional">Lógica Proposicional</span>
</h1>
</div>
<div class="allSelects wrapper">
<button class="p click toggle true" autofocus>
p
</button>
<select class="o click" name="operator" autofocus required>
<option value="~">~</option>
<option value="∧">∧</option>
<option value="∨">∨</option>
<option value="→">→</option>
<option value="↔">↔</option>
<option value="⊻">⊻</option>
</select>
<button class="q click toggle true" autofocus>
q
</button>
</div>
<div class="send wrapper">
<button class="click send">
👇😗
</button>
</div>
<div class="list wrapper">
<ul class="itemsList list"></ul>
</div>
</div>
</body>
</html>