-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.99 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
<!DOCTYPE html>
<html>
<head>
<title>Gordon Fountain | Home</title>
<link rel="stylesheet" href="./styles.css">
<link rel="shortcut icon" href="./resources/favicon.ico" type="image/x-icon">
<link rel="icon" href="./resources/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="navbar">
<a href='./index.html' style="text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 3px;">Home</a>
<a href='./resume.html'>Resume</a>
<a href='./portfolio.html'>Projects</a>
<div class="gradient-line"></div>
<!-- <div class="dropdown">
<button onclick = "window.location.href='./portfolio.html'", class="dropbtn">Portfolio
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="./portfolio.html#Robotics">Robotics</a>
<a href="./portfolio.html#CAD">CAD</a>
<a href="./portfolio.html#Software">Software</a>
</div>
</div> -->
</div>
<div style="width: 70%; overflow: hidden; padding-left: 15%; padding-top: 40px;">
<div style="width: 45%; float: left;">
<h2 class="frontpage-large-text">Welcome to my collection of robots!</h2>
<p class="frontpage-subtitle">
(and other work)
</p>
</div>
<div style="margin-left: 50%;">
<embed type="image/png" style="width: 70%;" src="resources/GordonWithDog.png">
</div>
</div>
<div class="frontpage-body">
<p class="frontpage-text">
Hi, I'm Gordon, and I make a lot of robots. Earlier this year I worked on a <a class="frontpage-link" href="./project_pages/oscar.html">marine rescue robot</a>
that uses GPS and a waterproofed thermal camera to locate overboard victims in open water, navigate to them, provide flotation, and guide rescue efforts to them.
I am also working on a <a class="frontpage-link" href="./project_pages/snake_bot.html">snake robot</a> that is over a meter long and
gives me a great base to investigate more complicated collision detection and avoidance algorithms in addition to developing organic motions and climbing sequences.
</p>
<p class="frontpage-text">
While my specialty is <a class="frontpage-link" href="./portfolio.html#firmware">firmware and controls</a>,
I'm an obsessive generalist who does everything from <a class="frontpage-link" href="./portfolio.html#mechanical">mechanical design</a> to
<a class="frontpage-link" href="./portfolio.html#electrical">electrical</a>. Check out all of my <a class="frontpage-link" href="./portfolio.html#all">work</a>!
</p>
<p class="frontpage-text">
I recently graduated from Mechatronics Engineering at the University of Waterloo. I've <a class="frontpage-link" href="./portfolio.html#job">worked</a>
at places like Impossible Metals, Kindred (Ocado), and Skygauge Robotics.
</p>
</div>
</body>
</html>