Skip to content

Instantly share code, notes, and snippets.

@ratracegrad
Created September 4, 2017 20:41
Show Gist options
  • Save ratracegrad/72755750f2178018fe94a4f4e6245976 to your computer and use it in GitHub Desktop.
Save ratracegrad/72755750f2178018fe94a4f4e6245976 to your computer and use it in GitHub Desktop.
<div class="flexContainer flexColumn fullHeight whiteBackground">
<nav class="flexContainer blueBackground">
<ul class="nav flexItem flexStart">
<li><a href="#">Company Name</a></li>
</ul>
<ul class="nav flexContainer flexEnd">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="flexContainer flexItem">
<main class="flexItem whiteBackground main">
<p>Put Content Here</p>
<a href="index.html" class="homeButton">Return Home</a>
</div>
</main>
<aside class="sidebar sidebarLeft">
<h2>Left Sidebar</h2>
<p>Put your content here</p>
</aside>
<aside class="sidebar sidebarRight">
<h2>Right Sidebar</h2>
<p>Put your content here</p>
</aside>
</div>
<footer class="flexContainer flexCenter blueBackground whiteText height50">&copy; Jennifer Bland</footer>
</div>
@tijnhendrikson
Copy link

The html structure is wrong.
The div and the main element are closed wrong

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment