93d884285b
Excluding the dependencies with .gitignore
99 lines
3.4 KiB
HTML
99 lines
3.4 KiB
HTML
<!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">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="Neil Brommer">
|
|
<meta name="author" content="Neil Brommer">
|
|
<link rel="icon" href="favicon.ico">
|
|
|
|
<!-- theme colors -->
|
|
<!-- Chrome, Firefox OS and Opera -->
|
|
<meta name="theme-color" content="#3f51b5">
|
|
<!-- Windows Phone -->
|
|
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
|
<!-- iOS -->
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
<title>Neil Brommer</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- font awesome -->
|
|
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this site -->
|
|
<link href="css/main.css" rel="stylesheet">
|
|
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-105178749-1', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body class="cover-page">
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="js/jquery-3.2.1.js"></script>
|
|
<script src="js/popper.js"></script>
|
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
|
|
<!-- Fixed navbar -->
|
|
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">Neil Brommer</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
|
<ul class="navbar-nav mr-auto">
|
|
<li class="nav-item active" id="homelnk">
|
|
<a class="nav-link" href=".">Home</a>
|
|
</li>
|
|
<li class="nav-item" id="resumelnk">
|
|
<a class="nav-link" href="resume.html">Resumé</a>
|
|
</li>
|
|
<li class="nav-item" id="contactlnk">
|
|
<a class="nav-link" href="contact.html">Contact</a>
|
|
</li>
|
|
<li class="nav-item" id="githublnk">
|
|
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank">Github <span class="fa fa-external-link" aria-hidden="true"></span></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main component for a primary marketing message or call to action -->
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<img src="img/NB-Cropped.jpg" width="100%">
|
|
</div>
|
|
<div class="col-md-9">
|
|
<h1>Neil Brommer</h1>
|
|
<p>
|
|
Computer Science student at <a href="https://www.ewu.edu/" target="_blank">Eastern Washington University</a>, graduating in spring 2018.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|