-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 3 KB
/
index.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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>Formulario</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<div class="form-container">
<div class="cotainer">
<form action="./recibe.php" method="GET">
<div class="head-form">
<h1>Formulario</h1>
<p>Rellena el siguiente formulario</p>
</div>
<div class="user-data">
<div class="campo">
<label for="">Nombre</label>
<span class="material-symbols-sharp">person</span>
<input type="text" name="username" placeholder="Ingres tu nombre">
</div>
<div class="campo">
<label for="">Direccion</label>
<span class="material-symbols-sharp">location_on</span>
<input type="text" name="address" placeholder="Ingresa tu direccion">
</div>
<div class="campo">
<label for="">Email</label>
<span class="material-symbols-sharp">mail</span>
<input type="email" name="email" placeholder="Ingresa tu email">
</div>
</div>
<div class="genero-section">
<label id="header">Selecciona tu genero:</label>
<label>
<input type="radio" name="genero" value="Masculino">Masculino
</label>
<label>
<input type="radio" name="genero" value="Femenino">Femenino
</label>
</div>
<div class="factura-section">
<label for="">
<input type="checkbox" value="Si" name="factura"> Decea recibir factura
</label>
</div>
<div class="envio-container">
<label for="" id="header">Como quiere recibir el envio:</label>
<select name="envio">
<option value="Normal">Normal</option>
<option value="Por avion">Por avion</option>
<option value="Urgente">Urgente</option>
</select>
</div>
<div class="button-container">
<button class="button-64" type="submit" name="result"><span>Enviar</span></button>
</div>
</form>
</div>
</div>
</body>
</html>