-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 1.23 KB
/
index.html
File metadata and controls
35 lines (29 loc) · 1.23 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minha Pagina com javascript</title>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<h1>Pagina criada para fins didáticos</h1>
<button type ="button" onclick= "clicar()">Clicque para exibir</button>
<p id= "agradecimento"></p>
<button type ="button" onclick= "redirecionar()">Venha para DIO</button>
<p id= "redireciona"></p>
<button type = "button" onmouseover="trocar()">Aponte para trocar</button>
<p id= "troca"></p>
<!--outra forma-->
<button type ="button" onclick= "clicar()">Mostrar</button>
<p></p>
<p onmouseover="trocar1(this)" onmouseout="voltar1(this)">Passe o mouse aqui.</p>
<p onmouseover="trocar1(this)" onmouseout="voltar1(this)">Passe o mouse aqui.</p>
<p onmouseover="trocar1(this)" onmouseout="voltar1(this)">Passe o mouse aqui.</p>
<select onchange="funcaoChange(this)">
<option value=" ">Default</option>
<option value="Fernando">Firts name</option>
<option value="Ramos">Last name</option>
<option value="41 anos">idade</option>
</select>
</body>