-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
270 lines (240 loc) · 12.1 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE html>
<html>
<head>
<title>Gerard Fierro</title>
<!--Mobile responsiveness-->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--CDN to bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!--Link to CSS file-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--CDN to social sites icons-->
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">Gerard Fierro</a>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav navbar-nav ml-lg-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-section">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects-section">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-section">Contact</a>
</li>
<li>
<a href="https://github.com/Gerfier"><i class="fab fa-github fa-fw" style="color:white; margin-top: 0.8rem"></i></a>
</li>
</ul>
</div>
</nav>
<!--scrollTop of page button-->
<button onclick="topFunction()" id="scrollUp" title="Go to top"><i class="fas fa-arrow-alt-circle-up" style="font-size:3em"></i></button>
<!--Adding jumbotron to cover whole screen-->
<div class="jumbotron jumbotron-fluid">
<div class="container text-center welcome-text">
<h1>Hola! My name is Gerard</h1>
<h3>Front End Developer</h3>
<p><a class="btn btn-lg btn-resume" href="https://drive.google.com/file/d/13Ddr7yjAuJk9wfMBk3SLWAhOuVL2VLdp/view?usp=sharing" role="button" data-placement="bottom" data-toggle="tooltip" title="Updated if new projects!">Resume</a></p>
</div>
</div>
<!--About Section-->
<section id="about-section">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 offset-lg-2 col-sm-12">
<i class="fas fa-user fa-4x" style="color: gray"></i>
<br></br>
<p class="about">Graduated with a B.S. in Computer Science from Texas Tech University. I love working with websites and web applications, currently
working as Developer building cool Web apps using the MERN stack.</p>
<p class="about">When not coding/learning I enjoy reading, traveling, gaming, soccer and drinking coffee.</p>
<h4>Motto: "Live everyday like it's Taco day"</h4>
</div>
</div>
</div>
</section>
<!--Projects Section-->
<!--Each img is clickable/touchable and will redirect to each project-->
<section id="projects-section">
<div class="container-fuid">
<div class="row">
<div id="petus-img" class="col-lg-4 col-md-4 col-sm-12 projects-img">
<a href="https://gitcdn.xyz/repo/Gerfier/PetUs-Bootstrap/master/index.html">
<img src="dist/images/petus.jpg" alt="petus-img" class="img-fluid">
<div class="overlay d-none d-lg-block">
<div class="text d-none d-lg-block">The 'Pet Us' project was created for a pet adoption startup, and still in development </div>
</div>
</a>
</div>
<div id="simpleApps-img" class="col-lg-4 col-md-4 col-sm-12 projects-img">
<a href="https://gitcdn.xyz/repo/Gerfier/simple-apps/master/index.html">
<img src="dist/images/simpleApps.jpg" alt="simpleApps-img" class="img-fluid">
<div class="overlay d-none d-lg-block">
<div class="text d-none d-lg-block">The 'simpleApps' project was created to show some ways to use javascript to provide simple and nice functionalities</div>
</div>
</a>
</div>
<div id="grabcafe-img" class="col-lg-4 col-md-4 col-sm-12 projects-img">
<a href="https://gitcdn.xyz/repo/Gerfier/GrabCafe/master/index.html">
<img src="dist/images/grabcafe.jpg" alt="grabcafe-img" class="img-fluid">
<div class="overlay d-none d-lg-block">
<div class="text d-none d-lg-block">The 'GrabCafe' project was inspired as a page for a coffee shop startup, design is still being improved</div>
</div>
</a>
</div>
</div>
<div class="row more-row">
<div class="more-projects">
<a href="https://github.com/Gerfier" class="projects-link">More projects...</a>
</div>
</div>
</div>
</section>
<!--Experience Section-->
<section id="experience-section">
<div class="container-flex">
<div class="row">
<div id="experience-section1" class="col-lg-6">
<h2>Skills</h2>
<i class="fab fa-css3-alt fa-3x" style="color: #4180f4; margin-right: 2rem"></i>
<i class="fab fa-html5 fa-3x" style="color: #f48942; margin-right: 2rem"></i>
<i class="fab fa-js-square fa-3x" style="color: #f4c741"></i>
<i class="boostrap-icon"><img src="logo\bootstrap-solid.svg" alt="boostrap-logo" style="max-width: 2.8rem; margin-left: 2rem; ; margin-bottom: 1.8rem"></i>
<i class="fab fa-react fa-3x" style="max-width: 2.8rem; margin-left: 2rem"></i>
</div>
<div id="experience-section2" class="col-lg-5">
<h2>Some experience</h2>
<i class="fab fa-python fa-3x" style="color: gray; margin-right: 2rem"></i>
<i class="mysql-icon"><img src="logo\powered-by-mysql-125x64-bow.png" alt="mysql-logo" style="max-width: 5rem; margin-left: 2rem; ; margin-bottom: 1.8rem; color:gray"></i>
</div>
</div>
</div>
</section>
<!--Contact Section-->
<section id="contact-section">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-sm-12">
<i id="envelope-icon" class="fas fa-envelope fa-5x" style="color: #68a2ff"></i>
<br></br>
<!-- Contact Card-->
<div class="card text-center" style="max-width: 300px;" mx-auto>
<!-- Heading -->
<div class="card-body">
<h4 class="card-title">Gerard Fierro</h4>
<h6 class="card-subtitle">Front End Developer</h6>
</div>
<!-- Image -->
<img src="dist/images/myPhoto.jpg" alt="PersonalPhoto" style="float:center;max-width: 200px" >
<!-- Text Content -->
<div class="card-bottom">
<p class="card-text">Texas Tech University</p>
<p class="card-text">Computer Science</p>
<p class="card-text">gerrardf7@gmail.com</p>
<!--Clicking this button will display modal to send a message to my email-->
<!--Email could be updated once the university not longer allows me after graduation to use theirs-->
<button class="btn btn-primary" data-toggle="modal" data-target="#contactModal"> Contact Me</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT MODAL -->
<div class="modal fade text-dark" id="contactModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contactModalTitle">
Send me a message!
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!--Integrated "formspree.io" to allow sending messages on static sites-->
<!--Check that page for documentation and to know more about them-->
<form method="POST" action="https://formspree.io/gerrardf7@gmail.com">
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" class="form-control">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="message" class="form-control"></textarea>
</div>
<div class="modal-footer">
<button class="btn btn-primary btn-block" type="submit">Send</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!--This is the footer section-->
<footer id="main-footer">
<div class="container">
<div class="row">
<div class="col-md-6">
© Copyright © 2017 Gerard Fierro
</div>
<div class="col-md-1">
</div>
<div class="col-md-4">
<a href="https://www.facebook.com/gerrard.fierro"><i class="fab fa-facebook-square fa-2x" style="color: white"></i></a>
<a href="https://www.instagram.com/gerard_fierro/"><i class="fab fa-instagram fa-2x" style="color: white; margin-left:1rem"></i></a>
<a href="https://twitter.com/Gerardo_Fierro"><i class="fab fa-twitter-square fa-2x" style="color: white; margin-left:1rem"></i></a>
</div>
<div class="col-md-1">
</div>
</div>
</div>
</footer>
<!--CDN for JS, Popper.js, jQuery so Bootstrap can work better-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<!--Link to scrollReveal animation-->
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<!--Link to jQuery file-->
<script src="js/scrollTop.js"></script>
<script>
window.sr = new ScrollReveal({ mobile: false })
window.sr = ScrollReveal();
//Projects Section Animation
sr.reveal('#petus-img',{
duration: 3000,
origin:'bottom',
distance: '100px'
});
sr.reveal('#simpleApps-img',{
duration: 3000,
origin:'bottom',
distance: '100px'
});
sr.reveal('#grabcafe-img',{
duration: 3000,
origin:'bottom',
distance: '100px'
});
//Contact Section Card Animation
sr.reveal('.card',{
duration: 3000,
origin:'bottom',
distance: '100px'
});
</script>
</body>
</html>