-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
43 lines (41 loc) · 1.42 KB
/
projects.html
File metadata and controls
43 lines (41 loc) · 1.42 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
<!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">
<title>Projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="navbar">
<div class="nav">
<a href="./index.html"><img src="Img/logoInicio.png" alt="" width="40px"></a>
</div>
<div class="navegacion">
<ul>
<li><a href="./aboutme.html">Acerca de mi</a></li>
<li><a href="./projects.html">Projectos</a></li>
<li><a href="./contacto.html">Contacto</a></li>
</ul>
</div>
</div>
<div class="titulo">
<h2>Projectos</h2>
</div>
</header>
<section class="mainProjects">
<div class="project1">
<a href="https://brittanychiang.com/#about" target="_blank">
<div class="imageProject">
<img src="./Img/facebook.png" alt="" width="50px">
</div>
<div class="textProject">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nesciunt recusandae doloribus facere architecto minus numquam.</p>
</div>
</a>
</div>
</section>
</body>
</html>