1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00

changed font - starting on resume

This commit is contained in:
2016-01-08 00:03:19 -06:00
parent 4c2bcdfd81
commit 651e208e59
5 changed files with 29 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ html {
}
body {
font-family: 'Arvo', serif;
font-family: 'Raleway', sans-serif;
}
a {

View File

@@ -17,10 +17,10 @@
<a href="/">Home</a>
</li>
<li>
<a href="/experience">My Experience</a>
<a href="/sensors">Sensors</a>
</li>
<li>
<a href="/sensors">Sensors</a>
<a href="/resume">Résumé</a>
</li>
<li>
<a href="mailto:mgerber11@winona.edu">Contact</a>

21
public/posts/resume.html Normal file
View File

@@ -0,0 +1,21 @@
<h2>Mitchell Gerber</h2>
<p>Hello, my name is Mitchell and I am persuing a career in software development. I have a passion for learning new technologies and I'm always striving to find a way to make something better.
</p>
<p>I always find enjoyment in building things, whether it's computers, drones, or software. I started programming upon enrolling in college and I have been hooked ever since. Programming has become a hobby of mine and it has opened up many oppurtunities.
</p>
<p>My primary strengths include back end development and working with MySQL databases. I also have experience with NoSQL databases and front end development. I helped develop a web application for Digi International that is used to debug embedded devices for testing purposes. I worked with Java/JSP, which ran on a Jetty web server and used an H2 embedded database.
</p>
<p>Software development doesn't stop when I leave work. I often lose track of time working on personal projects in my free time. I'm currently developing this personal website to learn Node.js and familiarize myself with newer web development technologies.
</p>
<h2>Technical Skills</h2>
<h2>Personal Background</h2>
<h2>Work Experience</h2>
<h2>Contacts</h2>

View File

@@ -21,7 +21,6 @@ router.get('/vpn', function(req, res, next){
res.redirect('https://mitchellg.me:943');
});
/* GET home page. */
router.get('/', function(req, res, next) {
@@ -209,7 +208,10 @@ function getPosts(callback){
post.date = window.$("#date").text();
post.intro = window.$("#intro").text();
posts.push(post);
if(post.intro != "" && post.date != "" && post.title != ""){
posts.push(post);
};
outerCB(null);
});

View File

@@ -7,6 +7,6 @@
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/javascript/jquery-ui-1.11.4.custom/jquery-ui.css">
<link rel="stylesheet" href="/bootstrap/css/bootstrap.icon-large.min.css">
<link href="http://fonts.googleapis.com/css?family=Arvo" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>