-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (65 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/ScrollTrigger.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital@1&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet">
<title>Eduardo Sastre</title>
</head>
<body>
<div class="Top-Container">
<img class="Top-Container__TopCloud" src="images/cloud.png" alt="cloud-img">
<h1>I'm Eduardo</h1>
<h2 class="Top-Container__Description">a mechatronic engineer and programmer</h2>
<img class="Top-Container__BottomCloud" src="images/cloud.png" alt="cloud-img">
<img class="Top-Container__BottomCloud2" src="images/cloud.png" alt="cloud-img">
<img class="Top-Container__mountain" src="images/mountain.png" alt="mountain-img">
<img class="Top-Container__mountain2" src="images/mountain.png" alt="mountain-img">
</div>
<div class="middle-container">
<div class="profile">
<img class="profile__MyImg" src="images/EduardoSastrePicture.jpg" alt="EduardoSastre-img">
<h2 class="profile__title">Hello.</h2>
<p class="profile__description">I'm a student of Benemerita Universidad Autonoma de Puebla,
nowadays i'm trying to learn the neccesary to become
a sofware engineer. Wish me luck.
</p>
</div>
<hr>
<div class="skills">
<h2 class="skills__title">My Skills.</h2>
<div class="skill-row skill-row1">
<img class="skill-row-img img1" src="images/frontend.png" alt="frontend-img">
<h3>Frontend</h3>
<p>I can use technologies like HTML, CSS and Javascript
in addition to libraries like: bootstrap, greensock, etc
to accomplish a web site</p>
</div>
<div class="skill-row skill-row2">
<img class="skill-row-img img2" src="images/backend.png" alt="backend-img">
<h3>Backend</h3>
<p>Nowadays I'm learnig how to use SQL and NoSQL in addition to Java and Python language</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>If you love programming </h3>
<p class="contact-me__description">Love programming as much as I do? Let's participate in a hackathon together! Maybe we can win it!</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/eduardo-sastre-justiniano-3b8474239/" target="_blank">LinkedIn</a>
<a class="footer-link" href="https://github.com/EduardoSastre" target="_blank">Github</a>
<p class="footer__p">©2022 Eduardo Sastre</p>
</div>
<script src="js/animation.js"></script>
</body>
</html>