-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (51 loc) · 2.01 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="shortcut icon" href="./logo.jpg" type="image/x-icon" />
<link rel="stylesheet" href="./styles.css">
<!--importando a tipografía -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap"
rel="stylesheet"
/>
<title>Portafolio - Jeaan Ibarra</title>
</head>
<body>
<header>
<div class="logo">
<img src="./logo.jpg" alt="logo" />
</div>
<div class="wrapper">
<div class="logo">Jeaan Ibarra</div>
<nav>
<a href="#Home">Home</a>
<a href="#who I am">¿who I am?</a>
<a href="#Pictures">Pictures</a>
</nav>
</div>
</header>
<section class="i-am">
<h2>Hi, my name is Jean, I am a Web deveploper devoted to front end languaje and Photographer</h2>
<img src="./It'sme.jpg" alt="Jeaan" />
</section>
<h2 class="titulo-p">Pictures</h2>
<section class="projects">
<img class="three-columns" src="./1.jpg" alt="photo1" />
<img class="three-columns" src="./2.jpg" alt="photo2" />
<img class="three-columns" src="./3.jpg" alt="photo3" />
<img class="three-columns" src="./4.jpg" alt="photo4" />
<img class="three-columns" src="./5.jpg" alt="photo5" />
<img class="three-columns" src="./6.jpg" alt="photo6" />
<img class="three-columns" src="./7.jpg" alt="photo7" />
<img class="three-columns" src="./8.jpg" alt="photo8" />
<img class="three-columns" src="./9.jpg" alt="photo9" />
</section>
<section class="hide"></section>
<footer class="footer">
<p>Design by ©<a href="https://github.com/Jeaanibarra">Jeaan Ibarra</a></p>
</footer>
<script scr="images.js"></script>
</body>
</html>