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
Binary file added .DS_Store
Binary file not shown.
55 changes: 55 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
body {
font: sans-serif;
font-size: 12px;
line-height: 1.5;
margin: 30px;
border-bottom: 5px solid #222222;
border-bottom: 5px solid #222222;
padding: 50px;
background: white;
}

a {
font-weight: bold;
color: black;
}

strong {
color: black;
font-style: italic;
}

h1 {
text-transform: uppercase;
font-weight: bold;
text-align: center;
margin-top: 0;
}

nav {
text-align: center;
}

hr {
border: none;
border: 1px solid black;
}

img {
float: right;
margin-left: 20px;
margin-bottom: 20px;
border: 1px solid black;
padding: 5px;
text-align: center;
}

p {
height: 200px;
}

.startup {
float: none;
height: 350px;
width: auto;
}
Binary file added images/Yoda.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/styles.css">
<title>Joe</title>
</head>

<body>
<nav>
About Me
<a href="resume.html">Portfolio</a>
</nav>

<h1>Joe Johnson</h1>

<hr>
<img src="images/Yoda.jpeg" alt="The Master">

<h3>I ENJOY LIFE AS A DEVELOPER</h3>

<p>I'm Joe Johnson, a Developer based in NYC. I Have ten years of experience in the graphic design world, specializing in the creation of responsive websites.</p>


<hr>
<nav>
<a href="https://www.facebook.com/">Facebook</a>
|
<a href="https://twitter.com">Twitter</a>
|
<a href="https://instagram.com">Instagram</a>
|
<a href="https://linkedin.com">LinkedIn</a>
</nav>
</body>
</html>



57 changes: 57 additions & 0 deletions resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/styles.css">
<title>Joe JOhnson | portfolio</title>
</head>
<body>
<nav>
About Me
<a href="resume.html">Portfolio</a>
</nav>
<h1>Joe Johnson</h1>

<hr>

<section>
<h2>Experience</h2>

<article>
<p>I recently graduated from a Front-End Web Development course at General Assembly where I learned HTML, CSS, JavaScript, jQuery and how to be an <strong>awesome</strong> Front-End Web Developer! During my spare time, I enjoy senior water aerobics, pickling, and spending time with my goldfish, Jerry.</p>
</article>
</section>

<section>
<h2>Portfolio</h2>
<ul>
<li>
<h3><strong>Web Developer</strong>, Relaxr <small>2015 - present</small></h3>
<p>Developed a multi-column layout blog, landing page, and contact forms that render on mobile devices.</p>
<img src="images/relaxr-deliverable.png" class="startup">
</li>
<li>
<h3><strong>Web Developer</strong>, Startup Matchmaker <small>2015 - present</small></h3>
<p>Used a design team's wireframes to develop this company's responsive homepage.</p>
<img src="images/startup-matchmaker-deliverable.png" class="startup">
</li>
<li><h3><strong>Web Developer</strong>, CitiPix 2015 <small>- present</small></h3>
<p>DBuilt web app prototype that allows users to store and quickly retrieve photos using keywords.</p>
<img src="images/citipix-deliverable.png" class="startup">
</li>
</ul>
</section>

<section>
<h2>EDUCATION</h2>

<ul>
<li>General Assembly — FEWD 2015</li>
<li>College of Soft Knocks — B.S. 2009</li>
<li>School of Hard Knocks — 2005 (Honors)</li>
</ul>
</section>

</body>
</html>

Binary file added starter-code/.DS_Store
Binary file not shown.