-
Notifications
You must be signed in to change notification settings - Fork 0
/
bsbio.html
48 lines (47 loc) · 2.2 KB
/
bsbio.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
<!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 href="css/metroishbootstrap.css" rel="stylesheet">
</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><a href="mainpage.html">Main</a></li>
<li class="active"><a href="#">Bio<span class="sr-only"(current)</span></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-12">
<img class="col-xs-8 col-md-4" src="img/img_placeholder_400x400.jpg" alt="photo">
<div class="col-xs-12 col-md-8">
<h1>Some things about me</h1>
<p>An actual more in-depth description of myself would go here, I suppose, though I have minor worries it might look somewhat sparse, as I'm bad at writing about myself.</p>
</div>
</div>
</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>