-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 980 Bytes
/
index.html
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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counter</title>
<link rel="stylesheet" href="styles.css" />
<div id="header">
<button class="toggle">Light Mode</button>
</div>
</head>
<body>
<main>
<div class="container">
<h1>Counter</h1>
<div class="spacer"></div>
<h2 id="value" class="ml4">
<span class="letters number"">0</span>
</h2>
<div class="button-container">
<button class="btn decrease">Decrease</button>
<button class="btn reset">Reset</button>
<button class="btn increase">Increase</button>
</div>
</div>
</main>
<script src="node_modules/animejs/lib/anime.min.js"></script>
<script src="app.js"></script>
<script src="modeswitch.js"></script>
</body>
</html>