-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
51 lines (48 loc) · 1.86 KB
/
contacto.html
File metadata and controls
51 lines (48 loc) · 1.86 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Roboto&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./images/logo_G.ico">
<link rel="stylesheet" href="style_c.css">
<title>Contáctenos - TB!</title>
</head>
<body>
<div class="container">
<div>
<h1>Contáctenos</h1>
</div>
<div>
<form id="form">
<div>
<label for="name">Nombre completo</label>
<input type="text" name="name" id="name" placeholder="Juan Pérez" required>
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="vos@mail.com" required>
</div>
<div>
<label for="phone">Teléfono</label>
<input type="text" name="phone" id="phone" placeholder="54 9 11 6666-7777" required>
</div>
<div>
<label for="message">Mensaje</label>
<textarea rows="5" name="message" id="message" placeholder="Su mensaje..." required></textarea>
</div>
<div>
<button type="submit">Enviar</button>
</div>
</form>
</div>
</div>
<footer>
<p class="footer">© 2023 Turismo Bonito / Bonito Tourism. Todos los derechos reservados.</p>
</footer>
<script src="myScript.js"></script>
</body>
</html>