Skip to content

Instantly share code, notes, and snippets.

@fozzle
Created November 2, 2017 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fozzle/816836db21bbf264bf00f66f184405f7 to your computer and use it in GitHub Desktop.
Save fozzle/816836db21bbf264bf00f66f184405f7 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=816836db21bbf264bf00f66f184405f7
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="container">
<div id="header">
<h1>My Cool Header</h1>
</div>
<div id="left">
leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64 leftman 64
</div>
<div id="center">
FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER FRONT AND CENTER
</div>
<div id="right">
the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time the right brothers flew their airplane at the right time
</div>
<div id="footer">
football is my passion
</div>
</div>
</body>
</html>
#container {
display: flex;
flex-wrap: wrap;
}
#header {
width: 90%;
background: orange;
}
#left {
width: 40%;
background: red;
}
#center {
width: 40%;
background: lightblue;
}
#right {
width: 40%;
background: aquamarine;
}
#footer {
background: purple;
font-weight: bold;
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment