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

HW Submission from Josh Cooper #17

Open
wants to merge 3 commits 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
77 changes: 77 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
body{
background-color: #f3f4f5;
padding: 15px;
font-family: Helvetica;
font-size: 14px;
background-image: url(http://www.gannett-cdn.com/-mm-/d8b68461f8c54f619579b4b1091145ba082f9ab2/c=0-1287-4000-3547&r=x1683&c=3200x1680/local/-/media/2016/05/08/USATODAY/USATODAY/635983284547965765-Radio-AMoon-Cover-240416.jpg);
background-repeat: no-repeat;
background-size: auto;
background-attachment: fixed;
opacity: 0.9;
width: auto;
height: auto;
}
nav{
font-size: 20px;
text-align: center;
color: #808080;
padding: 5px;
margin: 5px;
font-family: sans-serif;
}
h1{
background-color: white;
text-align: center;
font-family: sans-serif;
padding: 20px;
margin: 20px;
letter-spacing: 3px;
}
img{
width: 600px;
height: auto;
float: right;
vertical-align: top;

}
div{
align: right;
padding: auto;
margin: auto;
float: right;

}
p{
text-align: left;
text-shadow: all;
text-overflow: unset;
color: black;
text-shadow:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jcooper8190 nice use of text-shadow 💯

1px 1px 0 #999999,
1px 1px 0 #999999,
1px 1px 0 #999999,
1px 1px 0 #999999,
1px 1px 0 #999999;
margin: 10px;
padding: 5px;
font-size: 18px;
background-color: #f3f4f5;
}
.nav{
font-family: times;
background-color: white;
color: #70db70;
letter-spacing: 1px;
}
a{
color: #00aaff;
}
.resize{
margin: 10px;
border: 5px black solid;
float: none;
width: 500px;
height: auto;
opacity:1.0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jcooper8190 opacity: 1 is the default opacity values of an element.

filter: opacity(100%);
}
29 changes: 29 additions & 0 deletions experience.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Thom Yorke Resume</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Thom Yorke</h1>
<nav>
<a class="nav" href="index.html">bio</a> |
<a class="nav" href="experience.html">experience</a>
</nav>
<hr>
<center>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jcooper8190 it works but going forward lets use css to achieve the same results.

<a href="http://pitchfork.com/reviews/albums/6656-kid-a/" target="_blank">
<img class="resize" src="http://esq.h-cdn.co/assets/15/24/768x768/gallery-1433876510-81p-o2cddll-sl1437.jpg">
</a>
<a href="http://pitchfork.com/reviews/albums/12938-pablo-honey-collectors-edition-the-bends-collectors-edition-ok-computer-collectors-edition/" target="_blank">
<img class="resize" src="http://vignette4.wikia.nocookie.net/radiohead/images/b/b1/TheBendsAlbum.jpg/revision/latest?cb=20160129182340">
</a>
<a href="http://pitchfork.com/reviews/albums/6659-amnesiac/" target="_blank">
<img class="resize" src="http://ecx.images-amazon.com/images/I/A12S5KwzqmL._SL1500_.jpg">
</a>
<a href="http://pitchfork.com/news/58975-radioheads-ok-computer-to-be-archived-in-the-library-of-congress/" target="_blank">
<img class="resize" src="http://i.imgur.com/dL2B3BK.jpg">
</a>
</center>
</body>
</html>
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Thom Yorke Resume</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Thom Yorke</h1>
<nav>
<a class="nav" href="index.html">bio</a> |
<a class="nav" href="experience.html">experience</a>
</nav>
<hr>
<img src="http://www.twentyfourbit.com/wp-content/uploads/2013/05/thom-yorke-piano.jpg">
<p>We've taught the world how to disappear completely, and put everything in its right place.</p>
<p>We've left
<a href="http://www.radiohead.com/deadairspace">a moon shaped pool</a>
<a href="http://pitchfork.com/reviews/albums/10785-in-rainbows/">in rainbows</a>, OK COMPUTER?
</p>
<p>Thomas Edward "Thom" Yorke (born 7 October 1968) is an English musician best known as the singer and principal songwriter of the alternative rock band Radiohead. As a multi-instrumentalist, Yorke mainly plays guitar and piano, but also plays instruments including keyboards, bass, and drums, and works extensively with synthesisers, sequencers and programming. He is known for his falsetto vocals.</p>
</body>
</html>