-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulator.html
61 lines (56 loc) · 2.22 KB
/
simulator.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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logic Gate Simulator</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/simulator.css">
</head>
<body>
<header>
<h1>Logic Gate Simulator</h1>
<p>Simulate various logic gates and observe their outputs.</p>
</header>
<main>
<section class="gate-selection">
<h2>Select a Logic Gate</h2>
<select id="gate" onchange="updateGate()">
<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>
</section>
<section id="inputs">
<div class="toggle-container">
<label>Input A:</label>
<div class="toggle" id="toggleA" onclick="toggleInput('A')"></div>
</div>
<div class="toggle-container">
<label>Input B:</label>
<div class="toggle" id="toggleB" onclick="toggleInput('B')"></div>
</div>
</section>
<section id="output">
<h2>Output: <span id="outputResult">0</span></h2>
</section>
</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/simulator.js"></script>
</body>
</html>