-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
37 lines (31 loc) · 1.16 KB
/
contact.html
File metadata and controls
37 lines (31 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contactos Pagina</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="about2.html"><li>About 2</li></a>
<a href="contact.html"><li>Contact</li></a>
<a href="contact2.html"><li>Contact2</li></a>
<a href="ContactDemo.html"><li>ContactDemo</li></a>
</ul>
</nav>
</header>
<h1>Contactame</h1>
<form name="contact" method="POST" data-netlify="true">
<input type="text" name="name" placeholder="Nombre Completo" required>
<input type="email" name="email" placeholder="Direccion email" required>
<input type="tel" name="telefono" placeholder="(11 2222 4444)" pattern="(\d){10}" required>
<textarea name="mensaje" placeholder="Tu mensaje"></textarea>
<button type="submit">Enviar</button>
</form>
</body>
</html>