-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario de Contacto</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title container">
<h1>Jesus Rodolfo Gil farias</h1>
<h2>Formulario de Contacto</h2>
</div>
<form action="https://formspree.io/f/xeojygpr" method="POST">
<label for="name">Nombre:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Mensaje:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Enviar</button>
</form>
<script src="contact.js"></script>
</body>
</html>