-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 868 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OnlyKats</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div id="root">
<h3 id="LastKat"></h3>
<div id="progbar" style="width: 12%;">Progress: 0%</div>
<div id="confetti"></div>
<h1 id="title">OnlyKats</h1>
<button onclick="ClickMeFunc()" id="clickme" class="prettybtn">Click Me</button>
<button onclick="ResetClicks()" id="resetbtn" class="prettybtn">Reset Score</button>
</br>
</br>
</br>
<form>
<label for="boostCode">Enter Boost Code:</label>
<input type="text" name="booster" id="boostCode">
</form>
</div>
</body>
<script src="index.js"></script>
</html>