-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (139 loc) · 6.74 KB
/
Copy pathindex.html
File metadata and controls
143 lines (139 loc) · 6.74 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
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
<!DOCTYPE HTML>
<html>
<head>
<title>Kyle Tam - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" media="screen and (max-device-width: 500px)" href="css/mobile.css">
<link rel="icon" href="images/logo.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="javascript/scrolling.js" async></script>
</head>
<body>
<div class="banner">
<ul class="pull-left nav--left">
<div class="icon">
<a class ="icon" href="index">
Kyle Tam
</a>
</div>
</ul>
<ul class="pull-right nav--right">
<li><a href="index" class="page">Home</a>
<li><a href="design">Design</a>
<li><a href="manufacturing">Manufacturing</a>
<li><a href="projects">Projects</a>
<li><a href="hobbies">Hobbies</a>
<li><a href="gallery">Gallery</a>
<li><a href="contact">Contact</a>
</ul>
</div>
<div class="cover-photo"></div>
<div class="col-md-12">
<div class="downArrow bounce">
<a href="#bio">▼</a>
</div>
</div>
<div class="wrapper col-md-12" id="bio">
<div class ="content">
<div class="content__about col-md-12">
<h2 class="content-title">Hello there!</h2>
<p2 class="content-text">
My name is Kyle Tam. I'm a recent Mechatronics Engineering graduate from the University of Waterloo with a strong focus on mechanical design and manufacturing.
<br> <br>
Welcome to my portfolio! Here, you can learn more about my previous projects and experiences. I'm interested in many topics including mechanical design, rocketry, aviation, research, and astronomy.
<br> <br>
Feel free to take a look around and learn more about me by clicking on the sections below.
</p2>
</div>
</div>
</div>
<div class="links">
<div class="box__wrapper col-md-12">
<div class="col-md-4">
<a href="design.html">
<div class="box__outer" id="design">
<div class="box__inner">
<h1 class="cat_name">Mechanical Design</h1>
<h1 class="cat_title">Learn more about all the jobs and internships I've done where I took charge on exciting mechanical design projects!</h1>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="manufacturing.html">
<div class="box__outer" id="manufacturing">
<div class="box__inner">
<h1 class="cat_name">Manufacturing & Testing</h1>
<h1 class="cat_title">Learn more about all the jobs and internships I've done where I played an integral part in optimizing manufacturing and conducted important tests!</h1>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="projects.html">
<div class="box__outer" id="projects">
<div class="box__inner">
<h1 class="cat_name">Projects</h1>
<h1 class="cat_title">From designing sounding rockets and satellites on Waterloo Rocketry to automating hydroponics systems and creating robotic fish, there's no end in sight to the projects I've done in my free time!</h1>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="hobbies.html">
<div class="box__outer" id="hobbies">
<div class="box__inner">
<h1 class="cat_name">Hobbies</h1>
<h1 class="cat_title">Science and engineering is not what I am working on all day. Find out more about some of my other passions.</h1>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="gallery.html">
<div class="box__outer" id="gallery">
<div class="box__inner">
<h1 class="cat_name">Gallery</h1>
<h1 class="cat_title">A picture is worth a thousand words. Learn more about me through my photos.</h1>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="contact.html">
<div class="box__outer" id="contact">
<div class="box__inner">
<h1 class="cat_name">Contact</h1>
<h1 class="cat_title">Do you have any questions for me? Feel free to contact me here.</h1>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="footer col-md-12">
<div class="copyright__container">
<a href="index.html">© 2023 Kyle Tam</a>
</div>
<div class="footer__container">
<a href="mailto:kyle.m.tam@gmail.com">
<img src="media/icon_mail.png">
</a>
</div>
<div class="footer__container">
<a href="https://www.linkedin.com/in/kyle-m-tam/">
<img src="media/icon_linkedin.png">
</a>
</div>
<div class="footer__container">
<a href="https://github.com/kylemtam">
<img src="media/icon_github.png">
</a>
</div>
</div>
</body>
</html>