Created
November 7, 2016 23:48
-
-
Save RCTumolac/9ae9392b05e3a0f8bd07209e6473d7aa to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=9ae9392b05e3a0f8bd07209e6473d7aa
This file contains hidden or 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>Page Art and Stuff</title> | |
</head> | |
<body> | |
<div class = "A" id = "b"></div> | |
<div class = "A" id = "d"></div> | |
<div class = "A" id = "h"></div> | |
<div class = "A" id = "e"></div> | |
<div class = "A" id = "g"></div> | |
<div class = "A" id = "f"></div> | |
<div class = "A" id = "c"></div> | |
<br> | |
</body> | |
</html> |
This file contains hidden or 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
.A{ | |
border: 3px solid; | |
} | |
#b{ | |
height: 30px; | |
width: 25px; | |
background-color: blue; | |
float: left; | |
} | |
#c{ | |
height: 150px; | |
width: 25px; | |
background-color: yellow; | |
text-align: left; | |
} | |
#d{ | |
height: 45px; | |
float: left; | |
width: 25px; | |
background-color: yellow; | |
} | |
#h{ | |
height:100px; | |
width: 80px; | |
background-color: red; | |
text-align: left; | |
float: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment