-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruth-table.html
56 lines (51 loc) · 1.88 KB
/
truth-table.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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Truth Table - Electronics Hub</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/truth-table.css">
</head>
<body>
<header>
<h1>Truth Table</h1>
</header>
<main>
<h2>Select a Logic Gate</h2>
<select id="gate" onchange="generateTruthTable()">
<option value="">-- Select a Gate --</option>
<option value="and">AND</option>
<option value="or">OR</option>
<option value="not">NOT</option>
<option value="nand">NAND</option>
<option value="nor">NOR</option>
<option value="xor">XOR</option>
<option value="xnor">XNOR</option>
</select>
<table id="truthTable" style="display: none;">
<thead>
<tr>
<th>A</th>
<th id="inputBHeader">B</th>
<th>Output</th>
</tr>
</thead>
<tbody id="truthTableBody">
</tbody>
</table>
</main>
<footer>
<p>Made with 💖 by Subha Mondal. © 2024 Electronics Hub. All rights reserved.</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/subha-mondal10" target="_blank" class="social-icon">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
<a href="https://github.com/webdevbysubha" target="_blank" class="social-icon">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</footer>
<script src="/JS/truth-table.js"></script>
</body>
</html>