-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.35 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
42
<!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="styles.css" />
</head>
<body>
<div class="container">
<h1>Logic Gate Simulator</h1>
<div class="controls">
<label for="input1">Input 1:</label>
<select id="input1" class="input-select">
<option value="0">0</option>
<option value="1">1</option>
</select>
<label for="input2">Input 2:</label>
<select id="input2" class="input-select">
<option value="0">0</option>
<option value="1">1</option>
</select>
<label for="logicGate">Logic Gate:</label>
<select id="logicGate" class="gate-select">
<option value="AND">AND</option>
<option value="OR">OR</option>
<option value="NAND">NAND</option>
<option value="NOR">NOR</option>
<option value="XOR">XOR</option>
<option value="XNOR">XNOR</option>
</select>
</div>
<div class="result">
<h2>Result: <span id="result"></span></h2>
</div>
</div>
<footer>
<p>Coded by Jets</p>
</footer>
<script src="script.js"></script>
</body>
</html>