Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

completed css website #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Joe Johnson</title>
<link rel="stylesheet" href=style.css>
</head>
<body>
<header>
<ul>
<li class="selected">About Me </li> |
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
<h1> JOE JOHNSON </h1>
</header>
<article>
<div class ="para">
<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>
</div>
<div>
<img class="bean" src="mrbean.jpeg">
</div>
</article>
<footer>
<ul>
<li><a href="">Facebook</li></a> |
<li><a href="">Twitter</li></a> |
<li><a href="">Instagram</li></a> |
<li><a href="">LinkedIn</li></a>
</ul>
</footer>
</body></html>
Binary file added mrbean.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Joe Johnson</title>
<link rel="stylesheet" href=style.css>
</head>
<body>
<header>
<ul>
<li><a href="index.html">About Me </a></li> |
<li class="selected">Portfolio</li>
</ul>
<h1> JOE JOHNSON </h1>
</header>
<article>
<h2>Experience</h2>
<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 <b><i>awesome</i></b> 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="portfolio2">
<li class="divider">
<h4>Web Developer</h4><h5>, Relaxr </h5><h6>2015 - present</h6>
</br>Developed a multi-column layout blog, landing page, and contact forms that render on mobile devices.
<p><img class="portfolioImage" src="images/relaxr-deliverable.png"></p>
</li>
<li class="divider">
<h4>Web Developer</h4><h5>, Startup Matchmaker </h5><h6>2015 - present</h6>
</br>Used a design team's wireframes to develop this company's responsive homepage.
<p><img class="portfolioImage" src="images/startup-matchmaker-deliverable.png"></p>
</li>
<li class="divider">
<h4>Web Developer</h4><h5>, Citipix </h5><h6>2015 - present</h6>
</br>Built web app prototype that allows users to store and quickly retrieve photos using keywords.
<p><img class="portfolioImage" src="images/citipix-deliverable.png"></p>
</li>

</li>
</article>
<footer>
<ul class="divider">
<li><a href="">Facebook</li></a> |
<li><a href="">Twitter</li></a> |
<li><a href="">Instagram</li></a> |
<li><a href="">LinkedIn</li></a>
</ul>
</footer>
</body></html>
95 changes: 95 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
.selected {
font-style: italic;
}
.para {
float: left;
width: 50%;
}
.bean {
text-align: right;
border: 2px solid;
margin: 10px 0px 10px 20px;
padding: 5px;
}
.portfolio2 {
display: block;
margin-left: 50px;
}

.portfolioImage {
margin-left: 20px;
margin-top: 10px;
border: 2px solid;
padding: 5px;
}
.divider {
display: block;
margin-top:10px;
line-height: 20px;
}

h1{
font-family: arial;
}
h2 {
margin: 30px 0px;
font-family: arial;
}
h3 {
margin: 40px 0px 20px 0px;
font-size: 16px;
font-family: arial;
}
h4 {
font-weight: bold;
font-style: italic;
display:inline;
font-family: arial;
}
h5 {
display:inline;
font-weight: normal;
font-size: 15px;
font-family: arial;
}
h6 {
font-weight: normal;
display:inline;
font-family: arial;
}
body {
font-family: times;
font-size: 17px;
text-align: center;
margin: 40px 25px 40px 25px;
border-top: solid 5px;
border-bottom: solid 5px;
padding: 30px;
}
p {
font-family: times;
line-height: 22px;
}
article {
border-top: solid 1px;
border-bottom: solid 1px;
text-align: left;
}
header{
display: inline;
font-family: arial;
}
footer {
font-style: bold;
display: inline;
font-family: arial;
}
ul {
-webkit-padding-start: 0px;
}
li {
display: inline;
}
a {
color: black;
}