-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEx1.html
28 lines (22 loc) · 861 Bytes
/
Ex1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario</title>
</head>
<body>
<h2>Formulario de contacto</h2>
<form action="processForm.php" method="POST">
<label for="name">Nombre:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="username">Username</label><br>
<input type="text" id="username" name="username" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Mensaje:</label><br>
<textarea name="message" id="message" rows="4" cols="50" required></textarea><br><br>
<input type="submit" value="Enviar">
</form>
</body>
</html>