-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (41 loc) · 1.75 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
<!doctype html>
<html>
<head>
<title>Logic Master</title>
<meta name="description" content="Logic Master">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://neontomo.com/css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body>
<div id="main">
<div id="truth-table">
<h2></h2>
<p></p>
</div>
<div id="logic"></div>
<span id="connector-point"></span>
<div id="tools">
<input type="button" value="INPUT" onclick="createNode('INPUT');" />
<input type="button" value="OUTPUT" onclick="createNode('OUTPUT');" />
<input type="button" value="AND" onclick="createNode('AND');" />
<input type="button" value="NAND" onclick="createNode('NAND');" />
<input type="button" value="XOR" onclick="createNode('XOR');" />
<input type="button" value="XNOR" onclick="createNode('XNOR');" />
<input type="button" value="OR" onclick="createNode('OR');" />
<input type="button" value="NOT" onclick="createNode('NOT');" />
<input type="button" value="NOR" onclick="createNode('NOR');" /><br /><br />
<input type="button" value="Adder" onclick="fullAdder();" />
<input type="button" value="Subtractor" onclick="fullSubtractor();" />
<input type="button" value="DEL" id="deleteButton" />
<input type="number" placeholder="OUTPUT" disabled id="outputResults" />
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>