-
Notifications
You must be signed in to change notification settings - Fork 17
/
or.html
52 lines (50 loc) · 1.58 KB
/
or.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,
initial-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="Simulador de operadores lógicos" />
<title>Operadores lógicos.</title>
<link rel="icon" href="img/favicon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body id="opor">
<header>
<h1>Operadores lógicos</h1>
<nav>
<ul>
<li><a href="index.html" id="op">Home</a></li>
<li><a href="and.html" id="p1">AND</a></li>
<li><a href="or.html" id="p2">OR</a></li>
<li><a href="not.html" id="p3">NOT</a></li>
<li>
<a
href="https://github.com/professorjosedeassis/logical-operators"
target="_blank"
>GitHub</a
>
</li>
</ul>
</nav>
</header>
<div class="Content">
<img src="img/swoff.png" alt="interruptor" id="sw1" onclick="sw(1)" />
<img src="img/swoff.png" alt="interruptor" id="sw2" onclick="sw(2)" />
<img src="img/off.jpg" alt="lâmpada" id="lamp" onclick="sw(3)" />
<hr />
<p>
<img src="img/circ_or.png" alt="circuito" />
<img src="img/tabelor.png" alt="operador or" />
</p>
</div>
<footer>
<p>©<span id="copyrightYear"></span> - <a href="https://joseassis.com.br/" target="_blank">Professor José de Assis</a></p>
</footer>
<script src="logica.js"></script>
</body>
</html>