-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (61 loc) · 3.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WTL</title>
<link rel="icon" href="ic--baseline-whatsapp.svg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="logo_pH_header.png" alt="Blé!"> <h1>What a linker?!</h1>
</header>
Digite o número e clique em 'Gerar Link' ou <BR>pressione 'Enter' <BR><BR>
<div class="form-container">
DDD01: <input type="text" id="inpddd1" size="1" value="48">
Wpp01: <input type="text" id="inpZap1">
<button onclick="gerarZap(1)">Gerar Link01</button>
<a href="http://" id="a1" target="_blank"></a> <br> <br>
DDD02: <input type="text" id="inpddd2" size="1" value="48">
Wpp02: <input type="text" id="inpZap2">
<button onclick="gerarZap(2)">Gerar Link02</button>
<a href="http://" id="a2" target="_blank"></a> <br> <br>
DDD03: <input type="text" id="inpddd3" size="1" value="48">
Wpp03: <input type="text" id="inpZap3">
<button onclick="gerarZap(3)">Gerar Link03</button>
<a href="http://" id="a3" target="_blank"></a> <br> <br>
DDD04: <input type="text" id="inpddd4" size="1" value="48">
Wpp04: <input type="text" id="inpZap4">
<button onclick="gerarZap(4)">Gerar Link04</button>
<a href="http://" id="a4" target="_blank"></a> <br> <br>
DDD05: <input type="text" id="inpddd5" size="1" value="48">
Wpp05: <input type="text" id="inpZap5">
<button onclick="gerarZap(5)">Gerar Link05</button>
<a href="http://" id="a5" target="_blank"></a> <br> <br>
DDD06: <input type="text" id="inpddd6" size="1" value="48">
Wpp06: <input type="text" id="inpZap6">
<button onclick="gerarZap(6)">Gerar Link06</button>
<a href="http://" id="a6" target="_blank"></a> <br> <br>
DDD07: <input type="text" id="inpddd7" size="1" value="48">
Wpp07: <input type="text" id="inpZap7">
<button onclick="gerarZap(7)">Gerar Link07</button>
<a href="http://" id="a7" target="_blank"></a> <br> <br>
DDD08: <input type="text" id="inpddd8" size="1" value="48">
Wpp08: <input type="text" id="inpZap8">
<button onclick="gerarZap(8)">Gerar Link08</button>
<a href="http://" id="a8" target="_blank"></a> <br> <br>
DDD09: <input type="text" id="inpddd9" size="1" value="48">
Wpp09: <input type="text" id="inpZap9">
<button onclick="gerarZap(9)">Gerar Link09</button>
<a href="http://" id="a9" target="_blank"></a> <br> <br>
DDD10: <input type="text" id="inpddd10" size="1" value="48">
Wpp10: <input type="text" id="inpZap10">
<button onclick="gerarZap(10)">Gerar Link10</button>
<a href="http://" id="a10" target="_blank"></a> <br> <br>
</div>
<input type="checkbox" name="" id="chkEnter" unchecked> <output id="outCheckbox">'Enter' para abrir o link (se desmarcado, 'Enter' passa <br> para a digitação do próximo número)</output>
<script src="script.js"></script>
</body>
</html>