-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
52 lines (45 loc) · 997 Bytes
/
cadastro.html
File metadata and controls
52 lines (45 loc) · 997 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>cadastro</title>
<meta charset="utf-8">
<style type="text/css">
h1{
text-align: center;
color: blue;
font-size: 40px
}
label{
width: 400px;
height: 19px;
margin-left: 8px;
text-align: center;
}
input{
width: 200px;
height: 20px;
margin-left: 20px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1> FAÇA AQUI O SEU CADASTRAMENTO!</h1>
<hr>
<form action="enviar.php" method="post">
<p align="center">
<label>Nome<input type="text" id="Nome" name="Nome"/></label>
<input type="submit" value="enviar"/>
<br/>
<label>Email<input type="text" id="Email" name="Email"></label>
<input type="submit" value="enviar"/>
<br/>
<label>Idade<input type="text" name="Idade"></label>
<input type="submit" value="enviar"/><br>
<label>Comente<input type="text" name="Comentario"></label>
<input type="submit" value="enviar">
</p>
</form>
</body>
</html>