Skip to content

Commit

Permalink
form006
Browse files Browse the repository at this point in the history
  • Loading branch information
juliano-alexandre-eufrosino committed Nov 24, 2024
1 parent 350fa15 commit d0eaaf9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions exercicios/ex025/form006.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário</title>
</head>
<body>
<h1>Exemplo de Formulário</h1>
<form action="cadastro.php" method="post" autocomplete="on"></form>

<p>
<label for="icor">Cor</label>
<input type="color" name="Cor" id="icor" value="#00ff00">
</p>

<p>
<label for="inivel">Nível de Satisfação</label>
<input type="range" name="nivel" id="inivel" min="1" max="5">
</p>
<p>
<label for="ifoto">Foto do perfil</label>
<input type="file" name="Foto" id="ifoto">
</p>

<p>
<input type="submit" value="Enviar">
<input type="reset" value="Limpar">
</p>
</body>
</html>

0 comments on commit d0eaaf9

Please sign in to comment.