-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
37 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<title>Truth Table Generator</title>
</head>
<body>
<div class="content">
<div class="header">Truth Table Generator</div>
<div class="overview">
<span>This tool generates truth tables for propositional logic formulas.</span>
<br/>
<span>You can click </span><a href="https://github.com/bvanjoi/truth-table-generator" target="_blank">here</a> <span>to get the source code and more information.</span>
<br/>
<span>I will appreciate it if you can upload issues!</span>
<br/>
<span>there are some operator supported: /\, \/, ~, ->, ^, <->.</span>
</div>
<div class="connectors">
<button>/\</button>
<button>\/</button>
<button>~</button>
<button>-></button>
<button>^</button>
<button><-></button>
</div>
<div class="input">
<input type="text" placeholder="Enter for a formula" id="input">
</div>
<div id="error"></div>
<div id="truth-table"></div>
</div>
<script src="index.js"></script>
</body>
</html>