-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproyecto.html
66 lines (66 loc) · 3.16 KB
/
proyecto.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GeoFault</title>
<link rel="shortcut icon" href="img/logo_gf.png" type="image/x-icon">
<link rel="stylesheet" href="css/estilos_muro.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
</head>
<body>
<header class="encabezado">
<div class="wrapper">
<div class="logo-principal">
<a href="index.html"><h1>GeoFault</h1></a>
</div>
<nav>
<ul>
<li class="menu_1"><a href="index.html">Inicio</a></li>
<li class="menu_1"><a href="publicacion.html">Publicaciones</a></li>
<li class="menu_1"><a href="#">Descargas</a></li>
<li class="menu_1"><a href="#">Comparte</a></li>
<li class="menu_1"><a href="#">Acerca de</a></li>
</ul>
</nav>
</div>
</header>
<main class="encab-public">
<div class="encab-img-public">
<h1>COMPARTE / PROYECTO</h1>
</div>
</main>
<main>
<section class="contenedor arriba">
<form action="enviar_proyecto.php" method="post">
<h2>Comparte tu experiencia en un proyecto...</h2>
<input type="text" name="nombres" placeholder="Nombre" required>
<input type="text" name="correos" placeholder="Correo" required>
<textarea name="mensajes" placeholder="Escribe aquí" required></textarea>
<input type="submit" value="PUBLICAR" id="boton_muro_enviar">
</form>
</section>
<footer>
<div class="contenedor_footer">
<div class="texto_footer">
<h4>Telefono</h4>
<p>999033576</p>
</div>
<div class="texto_footer">
<h4>Email</h4>
<a href="mailto:[email protected]" class="email">Escribenos para mejorar</a>
</div>
<div class="texto_footer">
<h4>Redes sociales</h4>
<a href="https://www.facebook.com/sharer/sharer.php?u=https://geofault.com" target="_blank" class="facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://api.whatsapp.com/send?text=https://geofault.com" target="_blank" class="whatsapp"><i class="fa fa-whatsapp" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://geofault.com" target="_blank" class="linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://plus.google.com/share?url=https://geofault.com" target="_blank" class="google-plus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
</div>
<h5 class="final_footer">© GeoFault | Miguel Mogollon</h5>
</footer>
</main>
</body>
</html>