-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 1.73 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sweet Alerts</title>
<link rel="stylesheet" href="style.css">
<script src="sweetalert2/dist/sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2/dist/sweetalert2.min.css">
</head>
<body>
<main>
<header>
<h1>Testando Sweet Alerts</h1>
</header>
<div>
<p>Digite seu nome e clique em OK <input type="text" name="txtn" id="txtn">
<input type="button" value="OK"onclick=confirmar()></p>
</div>
<div id="res">
...
</div>
<article>
<hr>
<input type="button" value="Simples" onclick="clicar()">
<input type="button" value="Erro" onclick="erro()">
<input type="button" value="Pergunta" onclick="pergunta()">
<input type="button" value="Salvar"onclick="salvar()">
</article>
<hr>
<br><br>
<hr>
<article>
<input type="button" value="Confirmar" onclick="ok()">
<input type="button" value="Delet" onclick="deletar()">
<input type="button" value="Deletar"onclick="delet()">
<input type="button" value="Timer"onclick="timer()">
</article>
<hr>
<br><br>
<hr>
<article>
<input type="button" value="Perfil"onclick="perfil()">
<input type="button" value="vetor"onclick="vetor()">
<input type="button" value="Descobrir IP"onclick="descobre()">
</article>
<script src="javaScrpit.js"></script>
</main>
</body>
</html>