-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 770 Bytes
/
index.html
File metadata and controls
40 lines (32 loc) · 770 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
<!DOCTYPE html>
<html>
<body>
<center>
<div class="tudo">
<form class="formulario">
<label for="nome">Nome:</label><br>
<input type="text" id="nome" name="nome"><br>
<label for="telefono">Telefone:</label><br>
<input type="text" id="telefono" name="telefono"><br><br>
<button id="enviar">Enviar</button>
<button id="cancelar">Cancelar</button>
</form>
</div>
</center>
</body>
<style>
.tudo {
width: 10%;
}
.formulario {
font-family: monospace;
font-size: 20px;
text-align: left;
}
input {
width: 250px;
}
</style>
<script>
</script>
</html>