-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (68 loc) · 2.79 KB
/
Copy pathindex.html
File metadata and controls
86 lines (68 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<title>Patrick Wu</title>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- css -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/custom.css">
<link href='http://fonts.googleapis.com/css?family=Rokkitt:400,700|Lato:400,300' rel='stylesheet' type='text/css'>
<!-- js -->
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/script.js"></script>
<script src="/js/jquery.actual.min.js"></script>
</head>
<body>
<div id="wrapper">
<section id= "navigation">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="ion-navicon"></span>
</button>
<a class="navbar-brand" href="/index.html">Patrick Wu</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="/resume.html">Resume</a></li>
<li><a href="/blog/index.html">My Blog</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</div> <!-- collapse navbar-collapse -->
</div> <!-- container-fluid -->
</nav> <!-- navbar -->
</section> <!-- #navigation -->
</div> <!-- wrapper -->
<!-- About -->
<div class="container" id="about">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<img src="/img/patrick.jpg" class="img-circle" id="profile-pic">
</div>
</div> <!-- row -->
<div class = "row">
<div class="col-md-8 col-md-offset-2 white-text" id="intro">
<h1>Patrick Wu</h1>
<h4>Computer Engineering Student, Web Development Fiend, Super Smash Brothers Enthusiast</h4>
<p class="text-left">
If you somehow managed to stumble across this website, then welcome! I'm Patrick, a student at the University of Toronto, currently doing my undergrad on computer engineering. Other than those interests stated in the blatant header above, I also quite enjoy learning, be it machine learning, artificial intelligence, or how to coldbrew coffee.
</p>
</div>
</div>
</div> <!-- container -->
</body>
<!-- footer -->
<section id= "footer" class= "footer">
<div class= "row">
<div class= "copyright text-center">
<p> we can we can we can we can demolish 350 beers</p>
</div>
</div>
</section><!-- footer -->
</html>