Created
October 26, 2016 22:21
-
-
Save RCTumolac/2a69238555c167b671373765f64f5c99 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=2a69238555c167b671373765f64f5c99
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>Pictures</title> | |
<div class = "A" > Hello</div> | |
<div class = "B"> this is </div> | |
<div class = "A" > a</div> | |
<div class = "B"> test! </div> | |
</head> | |
<body> | |
</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{ | |
height: 200px; | |
width: 200px; | |
background-color: red; | |
color: white; | |
display: inline-block; | |
} | |
.B{ | |
height: 300px; | |
width: 300px; | |
background-color: blue; | |
color: white; | |
display: inline-block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment