Created
November 6, 2016 16:57
-
-
Save cesine/98953aaa0b79041954ca63ae7a6cbd21 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=98953aaa0b79041954ca63ae7a6cbd21
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
WIP example of wireframming