-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.22 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.22 KB
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
31
32
33
34
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Formulario com php</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="pcentral">
<form action="php/envia.php" method="get">
<fieldset>
<legend><b>MEUS DADOS</b></legend>
<br>
<label class="para" for="nome">Nome</label> <br>
<input type="text" name="nome" id="nomejs">
<br><br>
<label class="para" for="sobrenome">Sobrenome</label> <br>
<input type="text" name="sobrenome" id="sobrenomejs">
<br><br>
<label for="para">idade</label> <br>
<input type="number" name="idade" id="idadejs">
<br><br>
<label for="para">peso</label> <br>
<input type="number" name="peso" id="pesojs">
<br><br>
<label for="para">altura</label> <br>
<input type="text" name="altura" id="alturajs">
<br><br>
<input type="submit" name="submit" id="submit">
</fieldset>
</form>
</div>
</body>
</html>