Skip to content

Instantly share code, notes, and snippets.

@fozzle
Last active November 2, 2017 03:38
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/c3186a429f9b25577923294e0119f970 to your computer and use it in GitHub Desktop.
Save fozzle/c3186a429f9b25577923294e0119f970 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=c3186a429f9b25577923294e0119f970

Do Now 11/2/2017

Please edit the CSS so that the website looks like this:

Goal

<!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