-
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.38 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.38 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wayne Li's Website</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Wayne Li</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">About</a></li>
<li><a href="fa17-cs61b.html">Fall 2017 CS61B</a></li>
<li><a href="sp18-cs61b.html">Spring 2018 CS61B</a></li>
</ul>
</div>
</nav>
<div class="jumbotron text-center">
<h1>Wayne Li</h1>
<p>Welcome! This is a WIP website. It'll mostly be used for CS61B stuff.</p>
</div>
<center>
<a href="https://github.com/wayne-li2" class="btn btn-success" role="button">Github</a>
<a href="https://www.linkedin.com/in/wayne-li-45b0b4102" class="btn btn-primary" role="button">LinkedIn</a>
</center>
</body>
</html>