Created
December 12, 2016 23:52
-
-
Save oshoham/238a20c95fe533d45fcdb90be9b418de to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=238a20c95fe533d45fcdb90be9b418de
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>jQuery Fun House Starter Code</title> | |
</head> | |
<body> | |
<div class="section"> | |
<h1>What is your name? | |
<input id="name"> | |
</h1> | |
<div> | |
<button id="submit-name" value="That’s my name">That’s my name</button> | |
</div> | |
<p id="greeting">Hi </p> | |
</div> | |
<div class="section"> | |
<button id="change-color">Change the page‘s color!</button> | |
</div> | |
<div class="section" id="gallery"> | |
<h1>Pictures of elephants</h1> | |
<img class="gallery-thumb" id="pic1" src="https://upload.wikimedia.org/wikipedia/commons/f/f9/Loxodonta_africana_-_old_bull_(Ngorongoro,_2009).jpg"> | |
<img class="gallery-thumb" id="pic2" src="https://upload.wikimedia.org/wikipedia/commons/6/63/African_elephant_warning_raised_trunk.jpg"> | |
<img class="gallery-thumb" id="pic3" src="https://iso.500px.com/wp-content/uploads/2014/08/2048-5.jpg"> | |
<img id="gallery-main" src="www.fake.com"> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#gallery { | |
width: 50%; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.gallery-thumb { | |
display: block; | |
float: left; | |
padding: 5px; | |
box-sizing: border-box; | |
width: 33%; | |
} | |
#change-color { | |
width: 300px; | |
text-align: center; | |
display: block; | |
margin: 0 auto; | |
font-size: 3em; | |
} | |
.section { | |
padding: 1em 0; | |
border-bottom: 2px dashed gray; | |
} | |
h1, #submit-name { | |
font-size: 2em; | |
} | |
input { | |
font-size: 1em; | |
} | |
#greeting { | |
text-align: center; | |
font-size: 2em; | |
text-shadow: 3px 3px 3px gray; | |
} | |
#gallery-main { | |
width: 100%; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment