-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.13 KB
/
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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<title>Counter App</title>
<link rel="stylesheet" href="css/index.css" />
<script
type="module"
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"
></script>
</head>
<body>
<main>
<div class="window">
<h1 class="title-main">Counter</h1>
<p class="subtitle">Press those buttons!</p>
<h1 class="count-no" id="count-el">0</h1>
<div class="button-wrapper">
<button class="button" type="button" id="addBtn">Increase</button>
<button class="button" type="button" id="subBtn">Decrease</button>
<button class="button reset-btn" type="button" id="resetBtn">
Reset
</button>
</div>
<a
href="https://github.com/Code-Beaker?tab=repositories"
target="_blank"
class="icon"
>
<ion-icon name="logo-github"></ion-icon>
</a>
</div>
</main>
<script src="index.js"></script>
</body>
</html>