Created
November 7, 2016 03:16
-
-
Save cesine/34c530a57a920ffee314f7899c1f34b8 to your computer and use it in GitHub Desktop.
Site for wireframing. Click to import: https://popcode.org/?gist=34c530a57a920ffee314f7899c1f34b8
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>My favorite site</title> | |
| </head> | |
| <body> | |
| <div id="navbar"> | |
| <div id="logo"></div> | |
| <div id="searchbar"></div> | |
| <div id="profile"></div> | |
| </div> | |
| <div id="main"> | |
| <div id="titlebar"> | |
| <div id="title"></div> | |
| <div id="buttons"></div> | |
| </div> | |
| <ul id="files"> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| </ul> | |
| </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
| div { | |
| border-style: solid; | |
| border-width: 5px; | |
| height: 1em; | |
| width: 1em; | |
| } | |
| #navbar { | |
| width: 100%; | |
| border-color: red; | |
| } | |
| #logo { | |
| } | |
| #searchbar { | |
| width: 50%; | |
| } | |
| #profile { | |
| float: right; | |
| } | |
| #files { | |
| list-style: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment