Last active
July 28, 2016 07:09
-
-
Save mariyadiminsky/20b609a0e22b355e3bd144e0fe7f8cac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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