You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gdg-counter-website/index.html

16 lines
460 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GDG Talk Counter</title>
</head>
<body>
<h1>GDG Counter Website</h1>
<div class="app">
<div id="counter-value">???</div>
<button id="btn-decrement">Decrementa</button>
<button id="btn-increment">Incrementa</button>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>