incdec/static/index.html

14 lines
329 B
HTML
Raw Normal View History

2020-06-21 09:48:47 +00:00
<!DOCTYPE html>
<html>
<head>
<title>IncDec</title>
<script src="app.js"></script>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
2020-06-21 14:02:38 +00:00
<button id="dec" onclick="decrement()">-</button>
2020-06-21 09:48:47 +00:00
<p id="counter">loading</p>
2020-06-21 14:02:38 +00:00
<button id="inc" onclick="increment()">+</button>
2020-06-21 09:48:47 +00:00
</body>
</html>