-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfundamentals.html
104 lines (99 loc) · 4.83 KB
/
fundamentals.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logic Gate Fundamentals - 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/fundamentals.css">
</head>
<body>
<header>
<div class="container">
<h1>Logic Gates - DE</h1>
<nav>
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#gates">Logic Gates</a></li>
<li><a href="#applications">Applications</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="intro" class="section">
<div class="container">
<h2>Introduction to Logic Gates</h2>
<p>Logic gates are the building blocks of digital circuits. These gates perform basic logical operations on one or more binary inputs to generate a binary output. The primary logic gates include AND, OR, NOT, NAND, NOR, XOR, and XNOR gates.</p>
<p>They are used in various electronic devices like computers, smartphones, and digital watches for performing logical operations in circuits and decision-making systems.</p>
</div>
</section>
<section id="gates" class="section bg-light">
<div class="container">
<h2>Types of Logic Gates</h2>
<div class="gates-container">
<div class="gate-card">
<img src="images/AND-gate.jpg" alt="AND Gate">
<h3>AND Gate</h3>
<p>The AND gate produces a 1 output only if both inputs are 1.</p>
</div>
<div class="gate-card">
<img src="images/or gate.png" alt="OR Gate">
<h3>OR Gate</h3>
<p>The OR gate produces a 1 output if either of the inputs is 1.</p>
</div>
<div class="gate-card">
<img src="images/not.png" alt="NOT Gate">
<h3>NOT Gate</h3>
<p>The NOT gate produces the inverse of the input.</p>
</div>
<div class="gate-card">
<img src="images/2-input-NAND-gate.jpg" alt="NAND Gate">
<h3>NAND Gate</h3>
<p>The NAND gate produces a 1 output unless both inputs are 1.</p>
</div>
<div class="gate-card">
<img src="images/nor.png" alt="NOR Gate">
<h3>NOR Gate</h3>
<p>The NOR gate produces a 1 output only if both inputs are 0.</p>
</div>
<div class="gate-card">
<img src="images/xor.png" alt="XOR Gate">
<h3>XOR Gate</h3>
<p>The XOR gate produces a 1 output if the inputs are different.</p>
</div>
<div class="gate-card">
<img src="images/xnor.jpg" alt="XNOR Gate">
<h3>XNOR Gate</h3>
<p>The XNOR gate produces a 1 output if both inputs are the same.</p>
</div>
</div>
</div>
</section>
<section id="applications" class="section">
<div class="container">
<h2>Applications of Logic Gates</h2>
<p>Logic gates are used in a variety of applications in digital electronics, such as:</p>
<ul>
<li>Designing digital circuits such as adders and multiplexers.</li>
<li>Used in computer processors for arithmetic and logic operations.</li>
<li>Forming memory cells in registers and flip-flops.</li>
<li>Creating control systems for devices like computers and smartphones.</li>
</ul>
</div>
</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/truth-table.js"></script>
</body>
</html>