-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Calculadora Muito Foda</title>
<style>
#txt1 {
color: #FFFFFF;
}
</style>
</head>
<body style="background-color: #222222">
<h1 id="txt1">texto foda</h1>
<input id="b1" type="button" value="links" onclick="openLink(1)">
<br>
<input id="b1" type="button" value="draco calc" onclick="openLink(0)">
</body>
<script>
function openLink(arg){
switch(arg){
case 0:
window.location.href = "draco calc.html";
break
case 1:
window.location.href = "links.html";
break
}
}
</script>
</html>