-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainpage.html
49 lines (47 loc) · 2.46 KB
/
mainpage.html
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
<!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>Testing Bootstrap</title>
<link rel="stylesheet" href="css/metroishbootstrap.css">
</head>
<body>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 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>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<div class="navbar-brand" href="#">Nicholas Ring</div>
<li class="active"><a href="#">Main<span class="sr-only">(current)</span></a></li>
<li><a href="bsbio.html">Bio</a></li>
<li><a href="bsportfolio.html">Portfolio</a></li>
<li><a href="bsresume.html">Resume</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="col-xs-10 col-md-9">
<h1 class="text-center">Welcome to Nicholas Ring's homepage!</h1>
<h2 class="text-center">Enjoy your stay!</h2>
<p>A brief description of myself should probably go here at some point. What a shame I haven't written one yet.</p>
<div>Maybe insert some kind of (obviously more heavily curated) feed of content from a less-personal social network?</div>
</div>
<img class="col-xs-2 col-md-3" src="img/img_placeholder_400x400.jpg" alt="photo">
</div>
</div>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</body>
</html>