Skip to content

Instantly share code, notes, and snippets.

@LeMasters
Created November 7, 2019 14:36
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 LeMasters/451e8df46df2c8397b9fa3a7bffb2adc to your computer and use it in GitHub Desktop.
Save LeMasters/451e8df46df2c8397b9fa3a7bffb2adc to your computer and use it in GitHub Desktop.
CSS Positioning starter HTML
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8' />
<title>Floats</title>
<link rel='stylesheet' href='basic.css'/>
</head>
<body>
<div class='page'>
<div class='menu'>Menu</div>
<div class='sidebar'>Sidebar</div>
<div class='content'>Content</div>
<div class='footer'>Footer</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment