-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (20 loc) · 844 Bytes
/
index.html
File metadata and controls
21 lines (20 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>Minha página</title>
<meta charset="utf-8">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body onload="load()">
<button type="button" onclick="clicou()">Clique aqui!</button>
<p id="agradecimento" onclick="redirecionar()"></p>
<p onmouseover="trocar(this)" onmouseout = "voltar(this)">Passe o mouse aqui</p>
<p onmouseover="trocar(this)" onmouseout = "voltar(this)">Passe o mouse aqui</p>
<p onmouseover="trocar(this)" onmouseout = "voltar(this)">Passe o mouse aqui</p>
<select onchange="funcaoChange(this)">
<option value="1">Valor 1</option>
<option value="2">Valor 2</option>
<option value="3">Valor 3</option>
</select>
</body>
</html>