Created
November 16, 2016 04:39
-
-
Save inlinestyle/639c8bda5329fe6c4a12f84df6a7c3f4 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=639c8bda5329fe6c4a12f84df6a7c3f4
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 Title</title> | |
</head> | |
<body> | |
<div id="BensCoolDiv"> | |
I am the content! | |
</div> | |
</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
body { | |
background: lightblue; | |
} | |
#BensCoolDiv { | |
width: 400px; | |
height: 200px; | |
margin: 30px; | |
padding: 40px; | |
border: 20px solid hotpink; | |
background: lightgreen; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment