-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (62 loc) · 2.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FusionFox: The Website</title>
<link rel="icon" href="./favicon.png" type="image/png"/>
<link href="./css/main.css" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav role="navigation" class="navbar navbar-inverse navbar-fixed-top">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">FusionFox</a>
</div>
<!-- Collection of nav links and other content for toggling -->
<div id="navbarCollapse" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="https://www.linkedin.com/in/fusionfox" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/fusionfox" target="_blank">GitHub</a></li>
<li><a href="https://keybase.io/fusionfox" target="_blank">PGP Public Key (Keybase)</a></li>
</ul>
</div>
</nav>
<h1>I'm hosted with GitHub Pages.</h1>
<p>The personal website of Matthew Woolstencroft, Computer Science graduate and Engineer.</p>
<p>As a software engineer, I have programming experience particularly with Java. <br />
I also have knowledge of Linux, IP networking, databases and an interest in cyber security.</p>
<p>Thanks for the visit :)</p>
<br />
<h4>14 June 2014</h4>
<p>New design coming soon</p>
<p>Maybe even before 2018</p>
<p>- FusionFox</p>
<br />
<h3>Old posts</h3>
<p>Will return, re-formatted, with new site design. (Promise)</p>
<br />
<p><code>This is some code</code></p>
<script language="javascript">
function example_animate(px) {
$('#example').animate({
'marginLeft' : px
});
}
</script>
<p><button id="example" type="button" class="btn btn-primary" onclick="example_animate('+=50px')">Press me!</button></p>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
</body>
</html>