Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Last active August 14, 2017 16:01
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 myanmarlinks/aeac9b9d59f753653855040997ed0831 to your computer and use it in GitHub Desktop.
Save myanmarlinks/aeac9b9d59f753653855040997ed0831 to your computer and use it in GitHub Desktop.
SASS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS BOX</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<nav>
<ul>
<li>Home</li>
<li>About Us</li>
<li>Contact Us</li>
</ul>
</nav>
</div>
<div id="container">
<div class="box">
<p>A</p>
</div>
<div class="box">
<p>B</p>
</div>
<div class="box">
<p>C</p>
</div>
<div class="box">
<p>D</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment