-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
43 lines (38 loc) · 2.04 KB
/
index2.html
File metadata and controls
43 lines (38 loc) · 2.04 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
<!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="style2.css" />
<link rel="shortcut icon" type="image/svg" href="img/UR.svg">
<title>Vivi Tracker</title>
</head>
<body>
<div id="container" class="floatcontainer">
<div id="content" class="content">
<br>
<div class="number-input">
<img src="./img/U.svg" alt="" class="manasymbol">
<button onclick="this.parentNode.querySelector('input[type=number]').stepDown()"></button>
<input class="quantity" min="0" max="99" name="quantity" value="0" type="number">
<button onclick="this.parentNode.querySelector('input[type=number]').stepUp()" class="plus"></button>
</div><br><br>
<div class="number-input">
<img src="./img/R.svg" alt="" class="manasymbol">
<button onclick="this.parentNode.querySelector('input[type=number]').stepDown()"></button>
<input class="quantity" min="0" max="99" name="quantity" value="0" type="number">
<button onclick="this.parentNode.querySelector('input[type=number]').stepUp()" class="plus"></button>
</div><br><br>
<div class="number-input">
<img src="./img/C.svg" alt="" class="manasymbol">
<button onclick="this.parentNode.querySelector('input[type=number]').stepDown()"></button>
<input class="quantity" min="0" max="99" name="quantity" value="0" type="number">
<button onclick="this.parentNode.querySelector('input[type=number]').stepUp()" class="plus"></button>
</div><br><br>
<button onclick="document.querySelectorAll('input.quantity').forEach(el => el.stepDown(99));document.querySelectorAll('input.copylabel').forEach(el => el.value = '')" class="zerobtn">reset</button>
<br><br>
</div>
</div>
<a href="index.html">main art</a>
</body>
</html>