-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlcaraz_Resume.html
96 lines (84 loc) · 2.44 KB
/
Alcaraz_Resume.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
<!DOCTYPE html>
<html>
<head>
<title>Jose Alcaraz's Portfolio</title>
<style>
body {
background-color: #ffffff;
font-family: sans-serif;
}
h1 {
font-size: 2em;
margin-top: 0;
}
p {
margin-bottom: 1em;
}
.project {
margin-bottom: 2em;
}
.project-title {
font-size: 1.5em;
margin-bottom: 0.5em;
}
.project-description {
margin-bottom: 1em;
}
.project-image {
width: 100%;
}
.animated-text {
animation: text-blink 1s infinite;
}
@keyframes text-blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.project-image {
transition: 0.5s;
}
.project:hover .project-image {
transform: scale(1.1);
}
</style>
</head>
<body>
<h1 class="animated-text">Jose Alcaraz</h1>
<p>
I am a highly skilled and experienced STEM programmer with a passion for solving real-world problems. I have a proven track record of success in developing innovative solutions using a variety of programming languages and technologies. I am a quick learner and am always eager to learn new things. I am also a team player and am always willing to help others.
</p>
<div class="projects">
<div class="project">
<h2 class="project-title">Project 1</h2>
<p class="project-description">
This project was a machine learning model to predict housing market prices using Python and TensorFlow.
</p>
<img class="project-image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/House_prices.svg/1200px-House_prices.svg.png" />
</div>
<div class="project">
<h2 class="project-title">Project 2</h2>
<p class="project-description">
This project was a software application to help small businesses manage their finances using Java and Spring Boot.
</p>
<img class="project-image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Business_finance_flowchart.svg/1200px-Business_finance_flowchart.svg.png" />
</div>
<div class="project">
<h2 class="project-title">Project 3</h2>
<p class="project-description">
This project was a web application to help users track their fitness goals using React and Node.js.
</p>
<img class="project-image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Fitness_tracker_icon.svg/1200px-Fitness_tracker_icon.svg.png" />
</div>
</div>
<p>
<a href="mailto:">Email</a> | <a href="https://www.linkedin.com/in/jose-alcaraz-23b5751a4">LinkedIn</a> | <a href="https://github.com/chuwyjr">GitHub</a>
</p>
</body>
</html>