-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
47 lines (42 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Persistent Number Incrementer</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
#number {
font-size: 2em;
margin: 20px 0;
}
button {
font-size: 1em;
padding: 10px 20px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Number Counter</h1>
<div id="number">0</div>
<button onclick="increment()">Click to Increment</button>
<script>
// Check if there's a saved count in localStorage, otherwise start at 0
let count = localStorage.getItem('count') ? parseInt(localStorage.getItem('count')) : 0;
// Display the initial count value
document.getElementById('number').textContent = count;
// Increment function
function increment() {
count++;
document.getElementById("number").textContent = count;
// Save the count to localStorage
localStorage.setItem('count', count);
}
</script>
</body>
</html>