-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
35 lines (35 loc) · 968 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aumento de Salário</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
Aumento de Salário:
</header>
<section>
<div>
Insira o seu nome:
<input type="text" name="nome" id="nome">
</div>
<div>
Insira o seu salário atual:
<input type="number" name="salario" id="salario">
</div>
<div>
<input type="button" value="Calcular" id="calcular" min="1" onclick="Calcular()">
</div>
<div id="res">
</div>
<div></div>
</section>
<footer>
<p>© Empresa Fictícia</p>
</footer>
<script src="script.js"></script>
</body>
</html>