-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.09 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.09 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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counter</title>
<link rel="stylesheet" href="style.css" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
</head>
<body id="body">
<button onclick="button()" type=" click" id="button">on/off</button>
<center class="container" data-aos="fade-right">
<h1 data-aos="fade-right" class="header1">Enter to count:</h1>
<h1 id="header">0</h1>
<button
type="button"
id="increment-btn"
onclick="increment()"
data-aos="fade-left"
>
Increment
</button>
<button type="button" id="save" onclick="save()" data-aos="flip-left">
save
</button>
<p id="paragraph">Previous Entries is </p>
</center>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="./playGround.js"></script>
</body>
</html>