View this code at http://livecoding.io/4608246
-
-
Save dwtkns/4608246 to your computer and use it in GitHub Desktop.
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
{ | |
"libraries": [], | |
"mode": "html", | |
"layout": "fullscreen mode (vertical)", | |
"resolution": "reset" | |
} |
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
#red { | |
width: 100px; | |
height: 100px; | |
background: #FF0000; | |
} | |
#blue { | |
position:absolute; | |
top:472px; | |
left:80px; | |
width: 133px; | |
height: 100px; | |
background: #0000FF; | |
} |
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
<html> | |
<head> | |
<title>This shows up in the window title.</title> | |
</head> | |
<body> | |
<p>Here is some text! | |
<h1>h1</h1> | |
<h2>header 2</h2> | |
<ol> | |
<li>Item 1 | |
<li>Item 2 | |
<li>Item 3 | |
</ol> | |
<a href="http://www.google.com/">link </a> | |
<span class="things" id="thing1">asdf</span> | |
<div class="things">asdf</div> | |
</body> | |
</html> | |
<!--<div id='red'></div>--> | |
<!--<div id='blue'></div>--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment