-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Formulario de ejemplo</title>
</head>
<body>
<div class="container">
<h1>Formulario de contacto</h1>
<form action="procesar_formulario" method="post">
<label for="nombre">Nombre:</label>
<input
class="txt-input"
type="text"
id="nombre"
name="nombre"
required
/><br />
<label for="email">Correo electrónico:</label>
<input
class="txt-input"
type="email"
id="email"
name="email"
required
/><br />
<label for="mensaje">Mensaje:</label><br />
<textarea
class="txt-input"
id="mensaje"
name="mensaje"
rows="4"
cols="50"
required
></textarea
><br />
<input class="btn-submit" type="submit" value="Enviar" />
</form>
</div>
</body>
</html>