-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
73 lines (48 loc) · 1.68 KB
/
Copy pathcontacto.html
File metadata and controls
73 lines (48 loc) · 1.68 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
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Perfil</title>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,500,900italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/contacto_style.css">
</head>
<body>
<div id="miperfil">
<header>
<section class="extracto"> <h1> Contacto </h1>
<p> Desarrollador </p>
<img src="src/imagenMike.png" width="90px" height="80px" alt="Mi Foto">
</section>
<nav>
<ul>
<li>
<a href="index.html">Acerca de Mi </a>
</li>
<li>
<a href="links.html">Links </a>
</li>
<li class="activo">
<a href="contacto.html">Contactos </a>
</li>
</lu>
</nav>
</header>
<main>
<form class="contacto">
<label for="nombre_txt">Nombre:</label>
<input type="text" id="nombre_txt"/>
<br>
<label for="correo_txt">Correo Electrónico</label>
<input type="email" id="correo_txt"/>
<br>
<label for="mensaje_txt">Mensaje</label>
<textarea id="mensaje_txt" rows="7">
</textarea>
<br>
<input type="submit" value="Enviar" />
</form>
</main>
</div>
</body>
</html>