forked from professorjosedeassis/simulador
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathand.html
More file actions
30 lines (30 loc) · 881 Bytes
/
and.html
File metadata and controls
30 lines (30 loc) · 881 Bytes
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
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>AND</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Operadores lógicos</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="and.html">AND</a></li>
<li><a href="or.html">OR</a></li>
<li><a href="not.html">NOT</a></li>
<li><a href="https://www.youtube.com/playlist?list=PLbEOwbQR9lqyuy7U1YjGgBv0x2Hzuw569" target="_blank">JS</a></li>
<li><a href="https://www.youtube.com/playlist?list=PLbEOwbQR9lqxHno2S-IiG9-lePyRNOO_E" target="_blank">C</a></li>
</ul>
</nav>
<img src="swoff.png" id="sw1" onclick="sw(1)">
<img src="swoff.png" id="sw2" onclick="sw(2)">
<img src="off.jpg" id="lamp" onclick="sw(3)">
<hr>
<p>
<img src="circ_and.png">
<img src="tabeland.png">
</p>
<script src="logica.js"></script>
</body>
</html>