-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/bun.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>ROW COUNTER</title>
</head>
<body>
<div class="flex justify-center items-center bg-[#ffe4e1] h-screen">
<div class="mr-8 text-center">
<div class="text-5xl text-[#ebb461] mb-4">Row</div>
<div class="rounded-full border-4 border-[#e0a143] p-8 mb-4">
<div id="value-1" class="text-6xl text-[brown]">00</div>
</div>
<div class="flex justify-between max-w-xs mx-auto">
<button
id="minus-1"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
-
</button>
<button
id="plus-1"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
+
</button>
<button
id="reset-1"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
R
</button>
</div>
</div>
<div class="ml-8 text-center">
<div class="text-5xl text-[#ebb461] mb-4">Stitch</div>
<div class="rounded-full border-4 border-[#e0a143] p-8 mb-4">
<div id="value-2" class="text-6xl text-[brown]">00</div>
</div>
<div class="flex justify-between max-w-xs mx-auto">
<button
id="minus-2"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
-
</button>
<button
id="plus-2"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
+
</button>
<button
id="reset-2"
class="bg-[#ff6961] text-[#f7e5e5] text-xl py-2 px-4 rounded-full"
>
R
</button>
</div>
</div>
</div>
<img src="images/kimetsu.gif" id="zenitsu" alt="Zenitsu" />
<img src="images/gojo.gif" id="gojo" alt="Gojo" />
<script type="module" src="/main.js"></script>
</body>
</html>