-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (37 loc) · 1.75 KB
/
index.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>
<header>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</header>
<body class="darkTheme">
<nav class="navbar navbar-inverse navbar-fixed">
<div class="container-fluid">
<h1 class="navbar-text brand">cw</h1>
<button type="button" class="btn navbar-btn navbar-right" id="themeButton">Change Theme</button>
<button type="button" class="btn navbar-btn navbar-right" onClick="location.href='blob.html'" id="hangBlob">Play Hangblob</button>
<button type="button" class="btn navbar-btn navbar-right active" id="about">About</button>
</div>
</nav>
<div class="container">
<div class="row">
<div class="box">
<div class="col-xs-12 col-sm-8 col-sm-offset-2">
<img src="me.jpg" alt="me" class="img-responsive center-block img-circle"/>
<h2 class="text-center">Collin Webb</h2>
<hr>
<p>I am currently at Coding House -- a live in coding bootcamp. It is intense fun, and rewarding. ^_^</p>
<p>I have a game of hangman(blob) that I made for Coding House.</p>
</div>
</div>
</div>
<div class="row text-center">
<button class="" type="button" onClick="location.href='https://www.linkedin.com/pub/collin-webb/18/4a6/352'">linkedin</button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>