Created
June 30, 2020 23:47
-
-
Save marckubischta/502f8a567d248662bdaa64f53f8829c4 to your computer and use it in GitHub Desktop.
Android Netrunner Click Tracker
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
<html> | |
<body | |
bgcolor="black" | |
style="font-family: KAOMO, Hack, Source Code Pro; | |
color:orange; | |
font-size: 500%"> | |
<div | |
onclick="document.querySelector('#clicks').textContent = | |
Number(document.querySelector('#clicks').textContent) + 1;">+</div> | |
<div id="clicks" | |
onclick="document.querySelector('#clicks').textContent = '4';">4</div> | |
<div | |
onclick="document.querySelector('#clicks').textContent -= 1;">-</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment