Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
ntellij files
.idea/
*.iml

# Compiled java
target/
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-minimal
38 changes: 38 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
html {
display: block;
}

body {
display: block;
margin: 50px auto;
max-width:650px;
line-height: 1.6;
font-size: 20px;
color: #444444;
background-color: #F5F5F5;
}

h1 {
line-height: 1.2;
font-size: 2em;
font-weight: bold;
}

h2 {
line-height: 1.0;
font-size: 1.5em;
font-weight: bold;
}

h3 {
padding-left: 50px;
}
a {
color: #0000ff;
}

img {
padding-left: 50px;
width: 504px;
height: 378px;
}
Binary file added images/JupiterSmiling.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>John Squier Bio Page</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<header>
<h1> John Squier's Biography Page</h1>
<aside>A little information about me:</aside>
</header>
<h2>My past</h2>
<ul>
<li>Graduated from Newark High School in 2005.</li>
<li>Graduated from the University of Delaware in 2009 with a B.S. in Computer Science.</li>
<li>Completed a 2,172 mile hike of the Appalachian Trail from March to August 2010.</li>
<li>Approximately 10 years experience as a carpenter.</li>
</ul>
<p></p>

<h2>Current Interests</h2>
<ul>
<li>Java Development.</li>
<li>Learning HTML, CSS, and JavaScript.</li>
<li>Switching from Windows to OSX and Linux.</li>
<li>Hadoop and data processing.</li>
<li>JSON.</li>
</ul>

<h3>Check out this awesome picture of my dog Jupiter</h3>
<img src="./images/JupiterSmiling.JPG" alt="Just my dog smiling">

<hr>

<p>Also please check out my
<a href="https://www.github.com/jasquier">Github</a>
it's growing everyday!
</p>
</body>

</html>