-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (112 loc) · 5.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calef Mayta</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/index.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
</head>
<body class="body">
<header class="header animate__animated animate__fadeIn">
<nav class="nav">
<div class="container elements elements--header-nav">
<a href="#hero">
<img src="./assets/img/Rick-sanchez-icon.jpg" alt="Rick-sanchez-icon" width="48" height="48" class="nav__logo"/>
</a>
<button class="nav__action nav__icon--menu" id="navIconMenu">
<i class="bi bi-list"></i>
</button>
<ul class="menu">
<ul class="menu menu--header">
<li>
<a href="#hero" class="menu__link">Perfil</a>
</li>
<li">
<a href="#projects" class="menu__link">Experiencia</a>
</li>
<li class="nav__icon nav__icon--close" id="navIconClose">
<i class="bi bi-x-circle"></i>
</li>
</ul>
</ul>
</div>
</nav>
</header>
<main class="main">
<article class="section section--hero" id="hero">
<div class="container elements elements--hero">
<div class="card">
<div class="card animate__animated animate__fadeInLeft">
<div class="card__header">
<h1 class="card_title">Calef Mayta</h1>
</div>
<div class="card__body">
<h2 class="card__subtitle">La tecnología, como el arte, es un ejercicio altísimo de la imaginación humana.</h2>
<p class="card__text">Un programador que escriba un código limpio, entiende perfectamente el problema antes de escribir el código.</p>
</div>
<div class="card__footer">
<div class="buttons">
<a href="https://orcid.org/0000-0001-5754-0452" target="_blank" rel="nooper noreferrer" class="button button--primary">CV</a>
<a href="https://github.com/CalEf-MayTa" target="_blank" rel="nooper noreferrer" class="button button--primary button--outline">GitHub</a>
</div>
</div>
</div>
</div>
<div class="hero-img animate__animated animate__fadeInRight">
<img src="./assets/img/laptop-coding.webp" alt="Codigo Laptop" width="400" height="400" class="hero-img__img"/>
<figure class="hero-img__decorators">
<img src="./assets/svg/Apple-logo.png" alt="Apple-logo" width="64" class="hero-img__decorator"/>
<img src="./assets/svg/Intel-logo.png" alt="Intel-logo" width="64" class="hero-img__decorator"/>
<img src="./assets/svg/Microsoft-Logo.png" alt="Microsoft-Logo" width="64" class="hero-img__decorator"/>
<img src="./assets/svg/Tesla-logo.png" alt="Tesla-logo" width="64" class="hero-img__decorator"/>
</figure>
</div>
</div>
</article>
<section class="section section--h-100" id="projects">
<div class="container elements">
<h2 class="section__title">Proyectos</h2>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="https://i.postimg.cc/LXPKVpKW/cineverse.png" alt="Proyecto Cineverse"
width="100%" height="100%" class="swiper__img"/>
</div>
<div class="swiper-slide">
<img src="https://i.postimg.cc/QtKFX0G9/pokemon-inc-mern-frontend.png" alt="Proyecto Pokemon INC"
width="100%" height="100%" class="swiper__img"/>
</div>
<div class="swiper-slide">
<img src="https://i.postimg.cc/Cx03d381/puedes-lograrlo-ea-r.png" alt="Proyecto ¿Puedes lograrlo?"
width="100%" height="100%" class="swiper__img"/>
</div>
<div class="swiper-slide">
<img src="https://i.postimg.cc/wxrNmB07/tarjeta-de-perfil-elgs.png" alt="Proyecto Tarjeta de Perfil"
width="100%" height="100%" class="swiper__img"/>
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
<div class="swiper-scrollbar"></div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
<div class="swiper-scrollbar"></div>
</div>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<script src="./js/index.js" type="module"></script>
</body>
</html>