Last active
May 22, 2022 03:11
-
-
Save kunxin-chor/e098697c017a65f6f897a8e29a9fdc0b to your computer and use it in GitHub Desktop.
Counter index.html for question 6
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Count Me!</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div id="box">0</div> | |
<button id="increment">+</button> | |
<script src="script.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment