Skip to content

Instantly share code, notes, and snippets.

@cesine
Created November 7, 2016 03:16
Show Gist options
  • Select an option

  • Save cesine/34c530a57a920ffee314f7899c1f34b8 to your computer and use it in GitHub Desktop.

Select an option

Save cesine/34c530a57a920ffee314f7899c1f34b8 to your computer and use it in GitHub Desktop.
Site for wireframing. Click to import: https://popcode.org/?gist=34c530a57a920ffee314f7899c1f34b8
<!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>
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