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/boy-happy-face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>html css lab</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="border">
<ul>
<li>About Me</li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
<h1>JOE JOHNSON</h1>
</header>
<article>
<h2 class="padding">I ENJOY LIFE AS A DEVELOPER</h2>
<p class="padding">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>
<div id="visual">
<img src="images/boy-happy-face.png" width="300">
</div>
</article>
<footer>
<nav id="foot">
<ul>
<li>Facebook</li>
| <li>Twitter</li>
| <li>Instagram</li>
| <li>LinkedIn</li>
</ul>
</nav>
</footer>
</body>
</html>
60 changes: 60 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>html css lab</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="border">
<ul>
<li><a href="index.html">About Me</a></li>
<li>Portfolio</li>
</ul>
</nav>
<h1>JOE JOHNSON</h1>
</header>
<article>
<div>
<h2 id="experience">Experience</h2>
<p id="graduated">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>
<h3>PORTFOLIO</h3>
<ul class="smaller">
<li><span>Web Developer,</span> Relaxr <span class="small">2015 - present</span>
<br>Developed a multi-column layout blog, landing page, and contact forms that render on mobile devices.</li>
<div class="visual2">
<img src="images/relaxr-deliverable.png" alt="relaxr">
</div>
<li><span>Web Developer,</span> Startup Matchmaker <span class="small">2015 - present</span>
<br>Used a design team's wireframes to develop this company's responsive homepage.</li>
<div class="visual2">
<img src="images/startup-matchmaker-deliverable.png" alt="matchmaker">
</div>
<li><span>Web Developer,</span> CitiPix <span class="small">2015 - present</span>
<br>Built web app prototype that allows users to store and quickly retrieve photos using keywords.</li>
<div class="visual2">
<img src="images/citipix-deliverable.png" alt="citipix">
</div>
</ul>
<h4 class="edu">EDUCATION</h4>
<ul class="edu">
<li><span>General Assembly</span> - FEWD 2015</li>
<li><span>College of Soft Knocks</span> - B.S. 2009</li>
<li><span>School of Hard Knocks</span> - 2005 (Honors)</li>
</ul>
</article>
<footer>
<div>
<nav>
<ul>
<li>Facebook</li>
<li>Twitter</li>
<li>Instagram</li>
<li>LinkedIn</li>
</ul>
</nav>
</div>
</footer>
</div>
</body>
</html>
110 changes: 110 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
body {
background-color: #DCE8E4;
}

header {
border-top: 6px solid;
margin: 40px 80px 0px 80px;
text-align: center;
font-family: arial, serif;
}

.border > ul > li{
display: inline;
font-size: 25px;
font-weight: bold;
margin-bottom: 0px;
}

h1 {
margin-top: 0px;
font-size: 60px;
}

article {
border-top: 1px solid;
border-bottom: 1px solid;
margin: 0px 120px 0px 120px;
}

.padding{
text-align: left;
font-size: 20px;
line-height: 1.2;
width: 400px;
margin: 80px 0px 70px 0px;
}

h2 {
font-family: arial, serif;
letter-spacing: 5px
}

p {
letter-spacing: 0px;
}

#visual{
float: right;
margin: 20px 80px 20px 5px;
border: 1px solid;
padding: 10px;
}

footer {
border-bottom: 6px solid;
margin: 15px 80px 35px 80px;
font-size: 21px;
font-weight: bold;
text-align: center;
}

#foot > ul > li{
font-style: underline;
display: inline;
}

#experience {
font-size: 40px;
letter-spacing: 0px;

}

#graduated {
font-size: 25px;
letter-spacing: 1px;
}

h3 {
font-size: 30px;
font-family: arial, serif;
}

.smaller {
font-size:25px;
font-family: arial, serif;
}

span {
font-weight: bold;
font-variant: italic;
font-size: 25px;
}

.small {
font-size: 20px;
font-style: normal;
font-weight: normal;

}

.visual2 {
border: 1px solid;
padding: 10px;
margin: 20px 300px 35px 50px;
float: center;
}

.edu {
font-size: 25px;
}