-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
29 lines (25 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Redux</title>
</head>
<body>
<div class="w-full vh-100 bg-dark text-white d-flex justify-content-center align-items-center">
<div
class="border border-5 w-50 p-5 rounded border-success border-opacity-50 d-flex align-items-center flex-column bg-secondary">
<h1 class=""> Counter: <span id="counter">0</span></h1>
<div class="d-flex align-items-center gap-2">
<button class="btn btn-success" id="inc">Increment</button>
<button class="btn btn-danger" id="decr">Decrement</button>
<button class="btn btn-info" id="rnd">Random</button>
</div>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>