Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created August 25, 2017 13:03
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/fed83ea1f33c433c53030a7868c720dd to your computer and use it in GitHub Desktop.
Save myanmarlinks/fed83ea1f33c433c53030a7868c720dd to your computer and use it in GitHub Desktop.
SASS Part 2
<!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>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<div id="container">
<div class="box">
<p>A</p>
<button class="btn-red">Click Me</button>
</div>
<div class="box">
<p>B</p>
<p class="message error">This is error message</p>
</div>
<div class="box">
<p>C</p>
<p class="message success">This is success message</p>
</div>
<div class="box">
<p>D</p>
<p class="message warning">This is warning message</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment