incdec/static/index.html

14 lines
329 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>IncDec</title>
<script src="app.js"></script>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<button id="dec" onclick="decrement()">-</button>
<p id="counter">loading</p>
<button id="inc" onclick="increment()">+</button>
</body>
</html>