-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 4.58 KB
/
Copy pathindex.html
File metadata and controls
75 lines (72 loc) · 4.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Next line is necessary for the navbar to correctly collapse on mobile -->
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0">
<meta charset="UTF-8">
<title>Philip Chiang's Homepage</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Lobster" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/site-style.css">
<link rel="stylesheet" type="text/css" href="./css/index.css">
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="./js/site-js.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="./index.html">Philip Chiang</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div><!-- /.navbar-header -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="./index.html">Home <span class="sr-only">(current)</span></a></li>
<li class="dropdown">
<a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Projects <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./game-of-life.html">Game of Life</a></li>
<li><a href="http://suggestme.info" target="_blank">Suggest Me (with CoderWatch)</a></li>
</ul>
</li>
<li><a href="https://github.com/Philc90">Github</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav><!-- /.navbar-default -->
<div class="container-fluid">
<div class="row">
<div class="col-xs-1 col-sm-2 col-md-3 col-lg-3">
</div>
<div id="mid" class="col-xs-10 col-sm-8 col-md-6 col-lg-6 plate">
<h1 class="text-center">Philip Chiang</h1>
<img src="./images/index.PNG" id="profile-pic" class="img-responsive img-thumbnail center-block">
<h2 class="text-center">About me</h2>
<p class="text-center">Hi. My name is Philip Chiang and I am currently enrolled in the Computer Science, B.S. program at Cal Poly Pomona. I expect to graduate in 2017. I established this website as a place to show what I am currently working on, talk about my past projects, and practice my web development skills.</p>
<h2 class="text-center">Projects</h2>
<p class="text-center">I am currently interested in improving my knowledge of Python by working through <a href="https://www.nostarch.com/automatestuff/">"Automate the Boring Stuff with Python"</a> and learning Flask to run this website in the future if I decide to host it on my own web server.</p>
<p class="text-center"><a href="./game-of-life.html">A web version of Conway's Game of Life, using HTML5 canvas.</a></p>
</div>
<div class="col-xs-1 col-sm-2 col-md-3 col-lg-3">
</div>
</div>
<div id="footer" class="row">
<p class="text-center">©Philip Chiang 2016</p>
<p class="text-center">Hosted on <a href="https://pages.github.com/">Github Pages</a></p>
</div>
</div>
</body>
</html>