-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 803 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 803 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ejercicio1</title>
</head>
<body>
<h1>formulario HTML</h1>
<p>
<form action="index.html">
<input type="text" value="Juanito Pérez"> ingresa aquí tu nombre y apellidos <br>
<input type="tel" value="55555555555"> ingresa aquí tu teléfono <br>
<select class="" name=""> selecciona un número
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
</select><br>
<input type="email" name="email" value="@"> ingresa tu email <br>
<input type="password" required="required"> ingresa tu password <br>
<input type="submit" name="nombre" value="send">
</form>
</p>
</body>
</html>