Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Last active July 28, 2016 07:09
Show Gist options
  • Save mariyadiminsky/20b609a0e22b355e3bd144e0fe7f8cac to your computer and use it in GitHub Desktop.
Save mariyadiminsky/20b609a0e22b355e3bd144e0fe7f8cac to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- the three divs -->
<div id="firstDiv" class='divs'></div>
<div id="secondDiv" class='divs'></div>
<div id="thirdDiv" class='divs'></div>
<!--when we click this button the click event in main.js will hear it
and trigger the callback-->
<div style="text-align:center;">
<button id='btn'>Click me!</button>
</div>
<script src="main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment