Move projects to the home page, add github link to navbar
This commit is contained in:
parent
5af8c9a99d
commit
738574cdc1
56
contact.html
56
contact.html
|
@ -6,28 +6,20 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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 -->
|
<!-- 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 - Contact Page">
|
|
||||||
|
<title>Neil Brommer</title>
|
||||||
|
<meta name="description" content="Neil Brommer - Contact">
|
||||||
<meta name="author" content="Neil Brommer">
|
<meta name="author" content="Neil Brommer">
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="theme-color" content="#3f51b5">
|
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
||||||
<!-- Windows Phone -->
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
|
||||||
<!-- iOS -->
|
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
||||||
|
|
||||||
<title>Neil Brommer - Contact</title>
|
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
||||||
|
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
||||||
<!-- Bootstrap core CSS -->
|
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
||||||
<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 -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -41,15 +33,6 @@
|
||||||
ga('create', 'UA-105178749-1', 'auto');
|
ga('create', 'UA-105178749-1', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript -->
|
|
||||||
<script src="js/jquery-3.2.1.js"></script>
|
|
||||||
<script src="js/popper.js"></script>
|
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/contact.js"></script>
|
|
||||||
|
|
||||||
<!-- Google reCAPTCHA -->
|
|
||||||
<script src='https://www.google.com/recaptcha/api.js'></script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -67,14 +50,16 @@
|
||||||
<a class="nav-link" href=".">Home</a>
|
<a class="nav-link" href=".">Home</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item" id="resumelnk">
|
<li class="nav-item" id="resumelnk">
|
||||||
<a class="nav-link" href="resume.html">Resumé</a>
|
<a class="nav-link" href="resume.html">Resume</a>
|
||||||
</li>
|
|
||||||
<li class="nav-item" id="projectslnk">
|
|
||||||
<a class="nav-link" href="projects.html">Projects</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item active" id="contactlnk">
|
<li class="nav-item active" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</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"></span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -112,13 +97,22 @@
|
||||||
<textarea id="messageField" rows="5" required="required" class="form-control"></textarea>
|
<textarea id="messageField" rows="5" required="required" class="form-control"></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group captcha">
|
<div class="form-group captcha">
|
||||||
<div class="g-recaptcha" data-size="compact" data-sitekey="6LfFATcUAAAAAJ_YZ3qvYWqrtOUHmCItq-azzV3x"></div>
|
<div class="g-recaptcha" data-sitekey="6LfFATcUAAAAAJ_YZ3qvYWqrtOUHmCItq-azzV3x"></div>
|
||||||
</div>
|
</div>
|
||||||
<button id="contactSubmit" type="submit" class="btn btn-primary">Submit</button>
|
<button id="contactSubmit" type="submit" class="btn btn-primary">Submit</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Bootstrap core JavaScript -->
|
||||||
|
<script src="js/jquery-3.2.1.js"></script>
|
||||||
|
<script src="js/popper.js"></script>
|
||||||
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="js/contact.js"></script>
|
||||||
|
|
||||||
|
<!-- Google reCAPTCHA -->
|
||||||
|
<script src='https://www.google.com/recaptcha/api.js'></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
20
css/main.css
20
css/main.css
|
@ -1,13 +1,13 @@
|
||||||
:root {
|
:root {
|
||||||
--main-color: #3f51b5;
|
--main-color: #3f51b5; /* R:63, G:82, B:181 */
|
||||||
--main-dark-color: #002984;
|
--main-dark-color: #002984;
|
||||||
--main-light-color: #757de8;
|
--main-light-color: #757de8;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
/*min-height: 2000px;*/
|
|
||||||
padding-top: 70px;
|
padding-top: 70px;
|
||||||
padding-bottom: 40px;
|
padding-bottom: 40px;
|
||||||
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar, .fixed-top {
|
.navbar, .fixed-top {
|
||||||
|
@ -18,11 +18,11 @@ body {
|
||||||
|
|
||||||
a:not(.nav-link):not(.navbar-brand) {
|
a:not(.nav-link):not(.navbar-brand) {
|
||||||
color: var(--main-color);
|
color: var(--main-color);
|
||||||
text-decoration: underline;
|
/*text-decoration: underline;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover:not(.nav-link):not(.navbar-brand) {
|
||||||
color: var(--main-light-color);
|
color: var(--main-light-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
li.col-md-6 {
|
li.col-md-6 {
|
||||||
|
@ -33,12 +33,6 @@ li.col-md-6 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cover-page {
|
|
||||||
background: url(../img/EWU_Campus_Pic.jpg) no-repeat center center fixed;
|
|
||||||
background-size: cover;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.required {
|
.required {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
@ -46,3 +40,7 @@ li.col-md-6 {
|
||||||
.invalid-captcha {
|
.invalid-captcha {
|
||||||
box-shadow: 0 0 1.5px 1px red;
|
box-shadow: 0 0 1.5px 1px red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
|
131
index.html
131
index.html
|
@ -1,61 +1,48 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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 -->
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||||
|
|
||||||
|
<title>Neil Brommer</title>
|
||||||
<meta name="description" content="Neil Brommer - Home Page">
|
<meta name="description" content="Neil Brommer - Home Page">
|
||||||
<meta name="author" content="Neil Brommer">
|
<meta name="author" content="Neil Brommer">
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="theme-color" content="#3f51b5">
|
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
||||||
<!-- Windows Phone -->
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
|
||||||
<!-- iOS -->
|
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
||||||
|
|
||||||
<title>Neil Brommer</title>
|
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
||||||
|
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
||||||
<!-- Bootstrap core CSS -->
|
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
||||||
<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 -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
(function (i, s, o, g, r, a, m) {
|
||||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
|
||||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
(i[r].q = i[r].q || []).push(arguments)
|
||||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
}, 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('create', 'UA-105178749-1', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
</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>
|
|
||||||
|
|
||||||
|
|
||||||
|
<body>
|
||||||
<!-- Fixed navbar -->
|
<!-- Fixed navbar -->
|
||||||
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="/">Neil Brommer</a>
|
<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">
|
<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>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
|
@ -64,28 +51,92 @@
|
||||||
<a class="nav-link" href=".">Home</a>
|
<a class="nav-link" href=".">Home</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item" id="resumelnk">
|
<li class="nav-item" id="resumelnk">
|
||||||
<a class="nav-link" href="resume.html">Resumé</a>
|
<a class="nav-link" href="resume.html">Resume</a>
|
||||||
</li>
|
|
||||||
<li class="nav-item" id="projectslnk">
|
|
||||||
<a class="nav-link" href="projects.html">Projects</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item" id="contactlnk">
|
<li class="nav-item" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</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"></span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- Main component for a primary marketing message or call to action -->
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<h1>Neil Brommer</h1>
|
<h1>Neil Brommer</h1>
|
||||||
<p>
|
<p>
|
||||||
Computer Science student at <a href="https://www.ewu.edu/" target="_blank">Eastern Washington University</a>, graduating in spring 2018.
|
Computer Science student at
|
||||||
|
<a href="https://www.ewu.edu/" target="_blank">Eastern Washington University</a>, graduating in spring 2018.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="card-columns">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h4>Snippets</h4>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>A web based tool for managing reusable pieces of code and useful programming resources</p>
|
||||||
|
<a class="card-link" href="https://webdev.neilbrommer.com/multiTable/multiTable.html" target="_blank">Web Client</a>
|
||||||
|
<a class="card-link" href="https://webdev.neilbrommer.com/multiTable/documentation.html" target="_blank">Documentation</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h4>Start</h4>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="text-danger">
|
||||||
|
<small>Incomplete</small>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
A new tab page that displays lists of links using the browser's localStorage to store all data
|
||||||
|
</p>
|
||||||
|
<a class="card-link" href="https://start.neilbrommer.com/" target="_blank">Site</a>
|
||||||
|
<a class="card-link" href="https://github.com/NeilBrommer/NewTabPage" target="_blank">Source code</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h4>Website</h4>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>This website</p>
|
||||||
|
<a class="card-link" href="https://github.com/NeilBrommer/Personal-Site" target="_blank">Source code</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h4>Resume</h4>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>My <a href="resume.html">resume</a>
|
||||||
|
</p>
|
||||||
|
<p>Sensitive information has been removed from this public version</p>
|
||||||
|
<a class="card-link" href="NeilBrommer-WebResume.pdf">PDF</a>
|
||||||
|
<a class="card-link" href="https://github.com/NeilBrommer/Resume" target="_blank">Source code</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 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>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
134
projects.html
134
projects.html
|
@ -1,134 +0,0 @@
|
||||||
<!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 - Projects">
|
|
||||||
<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 - Projects</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>
|
|
||||||
<!-- 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" 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 active" id="projectslnk">
|
|
||||||
<a class="nav-link" href="projects.html">Projects</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item" id="contactlnk">
|
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<div class="jumbotron">
|
|
||||||
<h1>Projects</h1>
|
|
||||||
<p>
|
|
||||||
A list of projects I've done.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-6">
|
|
||||||
<h3>
|
|
||||||
<a target="_blank" href="https://github.com/NeilBrommer">Github</a>
|
|
||||||
</h3>
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://github.com/NeilBrommer/Personal-Site">Personal Website</a>
|
|
||||||
- The source for this website
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://github.com/NeilBrommer/Resume">Resume</a>
|
|
||||||
- The LaTeX source for my <a href="resume.html">resume</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-md-6">
|
|
||||||
<h3>Web App Development Class</h3>
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://webdev.neilbrommer.com/mortgageCalculator/mortgage_table.html">Mortgage Calculator</a>
|
|
||||||
- A simple JavaScript based mortgage calculator
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://webdev.neilbrommer.com/jscalc/calc.html">Calculator</a>
|
|
||||||
- A javascript based calculator
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://webdev.neilbrommer.com/word/word.html">A Word Is A Word</a>
|
|
||||||
- Takes a given word and uses various APIs to find definitions, synonymns, etc.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<a target="_blank" href="https://webdev.neilbrommer.com/singleTable/singleTable.html">Movies Database</a>
|
|
||||||
- A web app for keeping a database of movies. Made using HTML, Javascript, PHP, and MySQL.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
36
resume.html
36
resume.html
|
@ -6,28 +6,20 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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 -->
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||||
|
|
||||||
|
<title>Neil Brommer</title>
|
||||||
<meta name="description" content="Neil Brommer - Resume">
|
<meta name="description" content="Neil Brommer - Resume">
|
||||||
<meta name="author" content="Neil Brommer">
|
<meta name="author" content="Neil Brommer">
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="theme-color" content="#3f51b5">
|
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
||||||
<!-- Windows Phone -->
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
|
||||||
<!-- iOS -->
|
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
||||||
|
|
||||||
<title>Neil Brommer - Resumé</title>
|
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
||||||
|
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
||||||
<!-- Bootstrap core CSS -->
|
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
||||||
<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 -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -68,14 +60,16 @@
|
||||||
<a class="nav-link" href=".">Home</a>
|
<a class="nav-link" href=".">Home</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item active" id="resumelnk">
|
<li class="nav-item active" id="resumelnk">
|
||||||
<a class="nav-link" href="resume.html">Resumé</a>
|
<a class="nav-link" href="resume.html">Resume</a>
|
||||||
</li>
|
|
||||||
<li class="nav-item" id="projectslnk">
|
|
||||||
<a class="nav-link" href="projects.html">Projects</a>
|
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item" id="contactlnk">
|
<li class="nav-item" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</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"></span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -84,7 +78,7 @@
|
||||||
<!-- Main component for a primary marketing message or call to action -->
|
<!-- Main component for a primary marketing message or call to action -->
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<h1>Resumé</h1>
|
<h1>Resume</h1>
|
||||||
<p>
|
<p>
|
||||||
Work history, references, and more contact information available on request via the
|
Work history, references, and more contact information available on request via the
|
||||||
<a href="contact.html">contact page</a>.
|
<a href="contact.html">contact page</a>.
|
||||||
|
|
Loading…
Reference in a new issue