-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminterms.html
27 lines (23 loc) · 1009 Bytes
/
minterms.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
<html>
<head>
<title>Amara's KMAP</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.4.4.min.js"></script>
</head>
<body>
<div class="flexbox">
<div class="flexitem expression" id="expressionDiv">
<div class="flexitem">
<h1>Amara's Minterm Expression Solver</h1>
</div>
<form onsubmit="return false;">
<input id="inputValue" type="text" name="text" class="input" placeholder="1,2,3,4">
<input id="inputLetters" type="text" name="text" class="input" placeholder="A,B,C,D">
<button type="submit" class="button" value="submit" onclick="validate(false)">Evaluate Minterm</button>
</form>
</div>
<div class="table" id="tablediv"></div>
</div>
</body>
<script src="minterms.js"></script>
</html>