-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
52 lines (50 loc) · 2.01 KB
/
contacto.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/dumar.css">
<title>Portafolio Estudiante</title>
</head>
<body>
<header>
<picture class="titulo" id="imagen_titulo">
<img src="img/logo_ufps.png" alt="Logo" >
</picture>
<h1 class="titulo" id="texto_titulo">Portafolio Del Estudiante</h1>
</header>
<nav>
<ul>
<li><a href="inicio.html">Inicio</a></li>
<li><a href="conocimientos.html">Conocimientos</a></li>
<li><a href="proyectos.html">Proyectos</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
<main>
<header id="informacion" class="correrUnPoco">
<h2>Contacto</h2>
</header>
<div class="div1">
<section class="section">
<form>
<label for="nombre">Nombre:</label>
<input id="nombre" name="nombre" placeholder="Nombre completo">
<label for="email">Email:</label>
<input id="email" name="email" type="email" placeholder="[email protected]">
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" placeholder="Escribe tu mensaje"></textarea>
<input id="submit" name="submit" type="submit" value="Enviar" class="boton">
</form>
</section>
</div>
</main>
<footer>
<a href="https://www.facebook.com/" target="_blank"><img class="iconoRedSocial" src="https://cdn.icon-icons.com/icons2/1254/PNG/512/1495494673-jd04_84463.png" alt="facebook"></a>
<a href="https://www.twitter.com/" target="_blank"><img class="iconoRedSocial" src="https://www.freeiconspng.com/uploads/twitter-icon-8.png" alt="twitter"></a>
<a href="https://www.instagram.com/" target="_blank"><img class="iconoRedSocial" src="https://images.vexels.com/media/users/3/137198/isolated/preview/07f0d7b69ef071571e4ada2f4d6a053a-icono-de-instagram-colorido-by-vexels.png" alt="instagram"></a>
<div class="copyright">
Derechos Reservados © 2019 - Dumar Basto
</div>
</footer>
</body>
</html>