-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<title>JS Phone Mask</title>
</head>
<body>
<div id="app">
<i class="fab fa-js js"></i>
<h1>JS Brazillian Phone Mask</h1>
<input type="text" onkeyup="phoneMask(event)" minlength="16" maxlength="16" placeholder="(99) 9 9999-9999" autofocus required>
<p>
<span>
Fork by:
<a href="https://github.com/gcairesdev" target="_blank">
Guilherme A. Caires
</a>
</span>
<span>
Inicial repository:
<a href="https://github.com/mrbrunelli/regexp-celular-javascript" target="_blank">
Matheus R. Brunelli
</a>
</span>
</p>
<i class="fab fa-github github"></i>
</div>
<script src="phoneMask.js"></script>
</body>
</html>