-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 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
<!Doctype html>
<html lang="pt-br">
<head>
<title>Java Script</title>
<meta charset="utf-8">
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body onload="load()">
<h1>Curso Java Script</h1>
<button type="button" onclick="btnSobre()">Sobre</button>
<button type="button" onclick="btnBia()" class="beatriz">Beatriz Ribeiro</button>
<button type="button" onclick="btnSoma()">Somar</button>
<button type="button" onclick="btnSub()">Subtrair</button>
<button type="button" onclick="btnMult()">Multiplicar</button>
<button type="button" onclick="btnDiv()">Dividir</button>
<button type="button" onclick="btnFace()">Facebook</button>
<button type="button" onclick="btnInsta()">Instagram</button>
<button type="button" onclick="btnMusica()">Campo Harmonico</button>
<section id="select">
</section>
<section>
<h2 id="titulo2"></h2>
<p id="paragrafo"></p>
</section>
<img id="img" width="300px" src="imagens/imagem2.jpg" onMouseOver="mouseEmCima(this)" onMouseOut="mouseFora(this)">
<section id="select">
</section>
</body>
</html>