Created
October 16, 2014 12:48
-
-
Save suzubara/8e4fd818d2b93d87bd4b 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- THIS IS CSS! EDIT AT YOUR OWN RISK! --> | |
<style type="text/css"> | |
header { | |
border:2px solid #000; | |
margin-bottom:20px; | |
padding:20px; | |
} | |
main { | |
overflow:auto; | |
} | |
aside { | |
float:right; | |
width:35%; | |
border:2px solid #000; | |
padding:20px; | |
margin-left:20px; | |
box-sizing:border-box; | |
} | |
footer { | |
margin-top:20px; | |
padding:20px; | |
border:2px solid #000; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
This is a... | |
</header> | |
<main> | |
<aside> | |
your social | |
</aside> | |
<p>template for</p> | |
</main> | |
<footer> | |
media webpage | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment