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 images/Joe_Johnson.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="UTF-8">
<title>Joe Johnson About Me</title>
</head>
<body>
<header>
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
<h1>JOE JOHNSON</h1>

<hr>

</header>
<section>
<div id="aboutme">
<h2>I ENJOY LIFE AS A DEVELOPER</h2>
<h4>I'm Joe Johnson, a Developer based in NYC.</h4>
<h4>I have ten years of experience in the graphic design world,<br>specializing in the creation of responsive websites.</h4>
</div>
<div>
<img id="mugshot" src="images/Joe_Johnson.jpg" alt="Joe Johnson"/>
</div>
</section>



<footer>
<hr>
<ul>
<li><a href="">Facebook</a></li>
<li><a href="">Twitter</a></li>
<li><a href="">Instagram</a></li>
<li><a href="">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>
74 changes: 74 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="UTF-8">
<title>Joe Johnson Portfolio</title>
</head>
<body>
<header>
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
<h1>JOE JOHNSON</h1>
</header>

<hr>

<section>
<h3>EXPERIENCE</h3>
<p id="experience">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 awesome Front-End Web Developer! During my spare time, I enjoy senior water aerobics, pickling, and spending time with my goldfish, Jerry.</p>
</section>

<section>
<h3>EMPLOYMENT</h3>
<article class="job">
<article class="jobtext">
<p><strong>Web Developer</strong>, Relaxr 2015 - present</p>
<p>Developed a multi-column layout blog, landing page,<br>and contact forms that render on mobile devices.</p>
</article>
<article class="jobimageframe">
<img class="jobimage" src="images/relaxr-deliverable.png" alt="Relaxr"/>
</article>
</article>

<article class="job">
<article class="jobtext">
<p><strong>Web Developer</strong>, Startup Matchmaker 2015 - present</p>
<p>Used a design team's wireframes to develop this<br>company's responsive homepage.</p>
</article>
<article class="jobimageframe">
<img class="jobimage" src="images/startup-matchmaker-deliverable.png" alt="Matchmaker"/>
</article>
</article>

<article class="job">
<article class="jobtext">
<p><strong>Web Developer</strong>, CitiPix 2015 – present</p>
<p>Built web app prototype that allows users to store<br>and quickly retrieve photos using keywords.</p>
</article>
<article class="jobimageframe">
<img class="jobimage" src="images/citipix-deliverable.png" alt="CitiPix"/>
</article>
</article>
</section>

<section id="education">
<h3>EDUCATION</h3>
<p>General Assembly — FEWD 2015</p>
<p>College of Soft Knocks — B.S. 2009</p>
<p>School of Hard Knocks — 2005 (Honors)</p>
</section>

<footer>
<hr>
<ul>
<li><a href="">Facebook</a></li>
<li><a href="">Twitter</a></li>
<li><a href="">Instagram</a></li>
<li><a href="">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>
83 changes: 83 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
html {
font-family: Arial;
color: #fffafa;
}
body {
background-color: #293542;
margin: 20px;
}
h1 {
font-weight: bold;
font-size: 80px;
text-align: center;
}
h2,h3,h3,p {
padding: 10px;
}
h2 {
font-size: 35px;
}
h3 {
font-size: 25px;
text-decoration: underline;
font-weight: bold;
}
h4 {
font-size: 20px;
line-height: 125%;
}
p {
font-size: 20px;
}
a {
color: #fffafa;
}
ul {
text-align: center;
}
li {
display: inline;
padding: 10px;
}
.job {
clear: both;
}
.jobtext {
float: left;
background-color: #fffafa;
border: 2px solid;
border-radius: 10px;
margin: 10px;
color: #293542;
width: 500px;
height: 170px;

}
.jobimageframe {
background-color: yellow;
}
.jobimage {
width: 25%;
border-radius: 10px;
border: 2px solid #fffafa;
float: right;
margin: 10px;
}
#aboutme {
float: left;
}
#mugshot {
border: 2px solid white;
float: right;
border-radius: 10px;
margin: 10px 20px;
}
#education {
clear: both;
}
#experience {
text-align: justify;
}
footer {
clear: both;
}