Skip to content

Commit

Permalink
Update ex025
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmrd committed Jan 2, 2025
1 parent 01e41a1 commit 66168a3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ex025/form001.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!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>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1>Teste de formulário</h1>
<form action="cadastro.php" autocomplete="off">
<p><label for="inome">Nome: </label><input type="text" name="nome" id="inome"></p>
<p><label for="isobrenome">Sobrenome: </label><input type="text" name="sobrenome" id="isobrenome"></p>
<p><input type="submit" value="Enviar"></p>
</form>
</body>
</html>
5 changes: 5 additions & 0 deletions ex025/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@charset "UTF-8";

* {
font-family: Arial, Helvetica, sans-serif;
}

0 comments on commit 66168a3

Please sign in to comment.