-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<title>The People Counter</title>
</head>
<body>
<div class="app-container">
<header>
<h1>The People Counter</h1>
</header>
<main class="counter-container">
<div class="counter-display">
<div class="counter-frame">
<div id="count-el">0</div>
</div>
</div>
<div class="controls">
<button id="increment-btn" onclick="increment()">
<span>Increment</span>
</button>
<button id="save-btn" onclick="save()">
<span>Save</span>
</button>
</div>
<div class="entries">
<h2>Previous Entries</h2>
<div id="save-el" class="entry-list"></div>
</div>
</main>
</div>
<script src="index.js"></script>
</body>
</html>