-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.html
32 lines (32 loc) · 990 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
32
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="A little example application for getting started with Vite."
/>
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite Counter</title>
</head>
<body>
<div id="root">
<header>
<h2 class="counter-title">Counter</h2>
</header>
<main class="application">
<p id="count" class="count">0</p>
<div class="buttons">
<button id="increment">Increment</button>
<button id="decrement">Decrement</button>
</div>
<div id="content"></div>
</main>
</div>
</body>
</html>