fix order of elements

This commit is contained in:
mattx 2020-06-21 16:02:38 +02:00
parent 03a95c3704
commit 5f27bc5ff9
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<button onclick="increment()">+</button>
<button onclick="decrement()">-</button>
<button id="dec" onclick="decrement()">-</button>
<p id="counter">loading</p>
<button id="inc" onclick="increment()">+</button>
</body>
</html>