-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css">
<link rel="stylesheet" href="main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="core.js"></script>
</head>
<body>
<div class="nav">
<div class="container">
<ul class= "pull-left">
<li><a name='top' href="index.html">Home</a></li>
<li><a href="#about" class="scroll">About</a></li>
</ul>
<ul class= "pull-right">
<li><a href="resume.pdf">Resume</a></li>
<li><a href="https://github.com/Rayji96">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Ray Ji</h1>
<p>Computing and Financial Management Student at the University of Waterloo</p>
</div>
</div>
<a name="about"> </a>
<div class="about">
<div class="container">
<h3>About</h3>
<p>Hey! My name is Ray Ji and I'm a third year student in the University of Waterloo. I’m aiming for my bachelor’s in Computing and Financial Management. I have a passion for programming and mathematics and have been programming since my first year of high-school. I’m familiar with Turing, Scheme, HTML, and CSS. I’m currently learning C in my classes and JavaScript on my own. I’ve competed in the CEMC for both the computing and math competitions and was also the vice-president in my high-school computer science and robotics association.
</p>
<p>Aside from programming and mathematics I immensely enjoy reading, writing, and running.
</p>
<p><a href="#top">Back to top</a></p>
</div>
</div>
</body>
</html>