-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (123 loc) · 5.91 KB
/
index.html
File metadata and controls
124 lines (123 loc) · 5.91 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
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
122
123
124
<DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="./assets/styles/style.css">
<link rel="stylesheet" href="./assets/styles/tablet.css" media="screen and (min-width: 768px)">
<link rel="stylesheet" href="./assets/styles/desktop.css" media="screen and (min-width: 1366px)">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Pridi:wght@300;500&display=swap" rel="stylesheet">
<title>Welcome</title>
</head>
<body>
<header>
<ul>
<li class="header__download-button"> <a class="header__link" href="https://drive.google.com/file/d/1E8XTF_GR54wtxqcqvpPcCrUsOUavFIpQ/view" target="_blank" rel="noopener noreferrer">Look CV</a></li>
<li class="header__contact-button"><a class="header__link" href="#contact-section">Contact</a></li>
</ul>
</header>
<section class="cover-section">
<div class="introduction-container">
<span class="introduction-container__greeting">Hello!</span>
<span class="introduction-container__name">I'm <span class="introduction-container__name_green">Yael Castro</span> </span>
<span class="introduction-container__description">Software Developer and more...</span>
</div>
</section>
<section class="self-introduction-section">
<h1 class="self-introduction-section__title section-title">Let me introduce myself</h1>
<p class="self-introduction-section__description">Mexican 🌮 Developer based in Guadalajara. <span> Curious </span>from birth, <span> solution creator </span> by vocation. I enjoy learning from <span> multidisciplinary </span> teams. <br> Today, in a <span> remote </span> environment.</p>
<table class="self-introduction-section__skills">
<tr>
<th>Languages</th>
<th>Tools</th>
<th>More</th>
</tr>
<tr>
<td>Python</td>
<td>Git(hub)</td>
<td>Linux</td>
</tr>
<tr>
<td>Java</td>
<td>Docker</td>
<td>M365</td>
</tr>
<tr>
<td>Bash</td>
<td>VSCode</td>
<td>Networking</td>
</tr>
<tr>
<td>C</td>
<td>MySQL</td>
</tr>
<tr>
<td>HTML5</td>
<td>Figma</td>
</tr>
<tr>
<td>CSS3</td>
<td>Balsamiq</td>
</tr>
</table>
<a href="https://drive.google.com/file/d/1E8XTF_GR54wtxqcqvpPcCrUsOUavFIpQ/view" class="self-introduction-section__button" target="_blank" rel="noopener noreferrer">Look CV</a>
</section>
<section id="projects-section" class="projects-section">
<h1 class="projects-section__title section-title">What I've done</h1>
<div class="projects-section__grid">
<div class="project">
<a href="https://github.com/cyaelcastro/cyaelcastro.github.io" target="_blank" rel="noopener noreferrer">
<span class="project__title">Polaris</span>
<p class="project__description">Mobile first web page</p>
</a>
</div>
<div class="project">
<a href="https://github.com/cyaelcastro/RaspigramBot" target="_blank" rel="noopener noreferrer">
<span class="project__title">RaspigramBot</span>
<p class="project__description">Telegram bot to handle Raspberry Pi information</p>
</a>
</div>
<div class="project">
<a href="https://github.com/cyaelcastro/HeyAmikoo" target="_blank" rel="noopener noreferrer">
<span class="project__title">HeyAmikoo</span>
<p class="project__description">NLP application for robotics</p>
</a>
</div>
<div class="project">
<a href="https://github.com/hochob/hochob" target="_blank" rel="noopener noreferrer">
<span class="project__title">Hochob</span>
<p class="project__description">Multicontainer multimedia application</p>
</a>
</div>
<div class="project">
<a href="https://github.com/cyaelcastro/Power-Wire-Monitoring-System" target="_blank" rel="noopener noreferrer">
<span class="project__title">Power Wire Monitoring</span>
<p class="project__description">SPA with map support</p>
</a>
</div>
<div class="project">
<a href="#projects-section">
<span class="project__title">RoutData</span>
<p class="project__description">A way to improve public transport efficiency</p>
</a>
</div>
</div>
</section>
<section id="contact-section" class="contact-section">
<span class="contact-section__title section-title">Hello again!</span>
<span class="contact-section__invite">You want to have a word?</span>
<span class="contact-section__contact-button"><a href="#">Contact me</a></span>
<span class="contact-section__more">You want to see more?</span>
<div class="contact-section__logo-container">
<div class="logo github">
<a href="https://github.com/cyaelcastro/" target="_blank" rel="noopener noreferrer"></a>
</div>
<div class="logo linkedin">
<a href="https://www.linkedin.com/in/cyaelcastro/" target="_blank" rel="noopener noreferrer"></a>
</div>
</div>
</section>
</body>
</html>