-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
70 lines (55 loc) · 2.38 KB
/
Copy pathcontacto.html
File metadata and controls
70 lines (55 loc) · 2.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<script src="https://kit.fontawesome.com/147cf78807.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="contacto.css">
<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=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Edu+SA+Beginner:wght@400..700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="menu1">
<img src="imagenes/logo.png" alt="">
<div>
<div id="rss"><a href="RssHuamankevin/podcastproject2.rss"><img src="imagenes/rss.jpg" alt="" width="40px"></a></div>
<ul>
<li><a href="index.html">BLOG</a></li>
<li><a href="nosotros.html">NOSOTROS</a></li>
<li><a href="contacto.html">CONTACTO</a></li>
</ul>
</div>
</div>
</div>
</header>
<main>
<h3>CONTÁCTAME</h3>
<span>Si tienes alguna pregunta puedes escribirme a info@misitio.com o llenar este formulario</span>
<form action="/send/">
<input type="text" placeholder="Nombre">
<input type="email" placeholder="Email">
<input type="tel" placeholder="Teléfono">
<textarea name="text" class="caja" placeholder="Escribe tu mensaje aqui..."></textarea>
<div class="botonenviar">
<button>Enviar</button>
</div>
</form>
</main>
<footer>
<div class="menubotton">
<ul>
<li>© 2035 por NOMADA EN EL CAMINO. Creado con Wix.com</li>
<li>
<i class="fa-brands fa-facebook" style="color: #000000;"></i>
<i class="fa-brands fa-twitter" style="color: #000000;"></i>
<i class="fa-brands fa-instagram" style="color: #000000;"></i>
</li>
</ul>
</div>
</footer>
</body>
</html>