-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
42 lines (37 loc) · 1.17 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="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="operators">
<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/on.jpg" alt="lâmpada" id="lamp" onclick="sw(3)" />
</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>