-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 841 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MaskMoney.js</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5ae85dff3f.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div id="app">
<label for="money">Money R$</label>
<input type="text" id="money" onkeyup="maskMoney(event)" autofocus maxlength="11"
placeholder="Ex: 1.249,90">
<h2>BRL moneyMask <i class="fab fa-js"></i></h2>
<small>By <a href="https://github.com/mrbrunelli/regexp-mask-money" target="_blank">Matheus R. Brunelli</a></small>
</div>
</div>
<script src="maskMoney.js"></script>
</body>
</html>