-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (103 loc) · 4.67 KB
/
index.html
File metadata and controls
107 lines (103 loc) · 4.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Jordan May</title>
<link rel="icon" type="img/ico" href="images/favicon.ico">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600" rel="stylesheet" type="text/css">
<script src="https://use.fontawesome.com/93ee7a5f9c.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="home row justify-content-center align-items-center">
<div class="col text-center">
<h1>
<span class="title"></span>
</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col content">
<h2>Hi,</h2>
<p>
I'm Jordan and welcome to my website! If you've made it this far,
you might as well read on below to learn a bit about me, have a look at my resume,
and check out some of the stuff I've done.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col content">
<h2>Who Am I?</h2>
<p>
I'm a Systems Design Engineering student at the University of Waterloo.
A lot of people ask me what Systems Design is, and to be honest I don't really know.
The way I see it, it is a multidisciplinary approach to engineering.
Engineering encompasses a wide variety of fields, with each field working on a specific part of a project.
Systems Design (I think) is supposed to be the glue that binds these fields and parts together to... well... design a system.
</p>
<p>
I'm a developer, and have worked several terms as a software engineering intern.
I love to learn things that will help me become a better engineer, whether that may be languages, frameworks,
algorithms, or even things that seemingly have no relation whatsoever but might help me learn to think better.
I hope to go to bed each night having learned at least one new thing that day.
For me, it's not about what I know, it's about what I don't.
</p>
<p>
When I'm not at school or on a co-op, I enjoy music, books, tennis, video games, piña coladas, and getting caught in the rain.
I've been a piano player as long as I can remember, so hit me up if you're forming a rock band.
While most of these hobbies are just for fun, one thing I take very seriously is building Lego.
If you think you can out-build me, I want to meet you. Check below for my email.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col content">
<h2>Resume</h2>
<p>
I recently completed the last of my co-op terms at the University of Waterloo, and am now looking for full-time positions.
If you have any openings available, or are NASA looking for an astronaut,
feel free to check out my resume below to see if I might be a good fit.
</p>
<div class="card card-body">
<a href="images/resume.pdf" target="_blank"><img class="img-fluid" src="images/resume.png" /></a>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col content">
<h2>Where To Find Me</h2>
<p>
Want to get in touch? Shoot me an email, check out my LinkedIn, or have a look at my GitHub projects.
</p>
<div class="row">
<div class="bottom-link col text-center">
<a href="mailto:jordan.may@edu.uwaterloo.ca"><i class="fa fa-envelope-square" aria-hidden="true"></i></a>
</div>
<div class="bottom-link col text-center">
<a href="https://ca.linkedin.com/in/jjamay" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
<div class="bottom-link col text-center">
<a href="https://github.com/jjamay" target="_blank"><i class="fa fa-github-square" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
<div id="map"></div>
<footer class="text-center">
<p>Designed and coded by Jordan May in Goderich, Ontario, Canada</p>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/typed.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>