A Criação de Formulário Com 20 Caracteres
Por: Maison Luck • 10/6/2024 • Trabalho acadêmico • 837 Palavras (4 Páginas) • 44 Visualizações
<!DOCTYPE html>
<html>
<head>
<title>Cadastro de Pessoa</title>
<style>
table, th, th{
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h2>Cadastro de Pessoa</h2>
<form>
<table>
<tr>
<th>
<th>Nome:</th>
<td><input type="text" id="nome=" name="nome"></td>
</tr>
<tr>
<th>Data de Nascimento:</th>
<td><input type="text" id="nascimento" name="nascimento"></td>
</tr>
<tr>
<th>Email:</th>
<td><input type="email" id="email" name="email"></td>
</tr>
<tr>
<th>Telefone</th>
<td><input type="tel" id="telefone" name="telefone"></td>
</tr>
<tr>
<th>Gênero:</th>
<td>
<input type="radio" id="masculino" name="masculino">
<label for="masculino">Masculino</label><br>
<input type="radio" id="femenino" name="femenino">
<label for="femenino">Femenino</label><br>
</td>
</tr>
<tr>
<th>Interesses:</th>
<td>
<input type="checkbox" id="esportes" name="interesses" value="esportes">
<label for="esportes">Esportes</label><br>
<input tyoe="checkbox" id="leitura" name="interesses" value="leitura">
<label for="leitura">Leitura</label<br>
<input type="checkbox" id="musica" name="interesses" value="musica">
<label for="musica">Musica</label><br>
...