-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
40 lines (37 loc) · 1.11 KB
/
contact.html
File metadata and controls
40 lines (37 loc) · 1.11 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
<!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="side.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="index.html#about">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>Contact Information</h1>
</div>
</div>
<div class="contact">
<div class="container">
<h3>Phone:</h3>
<p>226-600-7391</p>
<h3>Email:</h3>
<p>r3ji@uwaterloo.ca</p>
</div>
</body>
</html>