-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet" href="styles/bootstrap-material-design.min.css">
<link rel="stylesheet" href="styles/main.css">
<title>Portfolio</title>
</head>
<body>
<nav class="navbar navbar-dark">
<h2>Brian Chan</h2>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<div id="mainPage" class="container page-container">
<h1>About</h1>
<p>I'm Brian Chan, a sophomore CS Major at Rose-Hulman Institute of Technology. I enjoy playing the piano, rolling gacha, and talking in a really loud voice. Contrary to popular belief, I do actively think.</p>
</div>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/popper.js"></script>
<script src="scripts/bootstrap-material-design.js"></script>
<script>$("body").bootstrapMaterialDesign();</script>
<script src="/__/firebase/7.18.0/firebase-app.js"></script>
<script src="/__/firebase/7.18.0/firebase-analytics.js"></script>
<script src="/__/firebase/7.18.0/firebase-auth.js"></script>
<script src="/__/firebase/7.18.0/firebase-firestore.js"></script>
<script src="/__/firebase/init.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>