-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
corri alguns erros, novo modelo de form sem nenhum css
- Loading branch information
anasilveira9787
committed
Mar 1, 2022
1 parent
04b5e5f
commit cacd47e
Showing
2 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Document</title> | ||
</head> | ||
<body> | ||
<form action=""> | ||
<fieldset> | ||
<legend>Contato</legend> | ||
<p><label for="name">Nome: </label></br> | ||
<input type="text" id="name" placeholder="Digite seu nome completo"> | ||
</p> | ||
<p><label for="email">E-mail: </label></br> | ||
<input type="email" name="email" id="email" required placeholder="[email protected]"> | ||
</p> | ||
<p><label for="message">Mensagem: </label></br> | ||
<textarea name="message" id="message" cols="30" rows="10"></textarea> | ||
</p> | ||
<button type="submit" id="enviar">ENVIAR</button> | ||
|
||
</fieldset> | ||
|
||
|
||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters