-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.08 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
<!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>Contador de idade</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
Verificador de Idade
</header>
<section class="box">
<input class="idade" id="txtano" type="number" placeholder="Digite seu Ano de nascimento">
<p class="paragrafo">Genero:
<input type="radio" id="mas" name="radsex" checked>
<label for="M">Masculino</label>
<input type="radio" id="femi" name="radsex">
<label for="F">Feminino</label>
<img src="" id="imagens">
</p>
<input type="button" class="veri" value="Verificar" onclick="verificar()">
<div id="res">
<h6 class="texto">Preencha os dados para obter o resultado...</h6>
</div>
</section>
</body>
</html>