-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·63 lines (55 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cat Clicker Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="head">
<h1>Cat Clicker</h1>
<div class="controls">
<button class="restart">Restart</button>
</div>
</div>
<div class="cats">
</div>
<div class="catList">
<p>Select Cat by Name</p>
<ul>
</ul>
</div>
<div class="adminBox">
<button id="admin">Admin</button>
<form action="" class="adminForm">
<table>
<tr>
<td><label for="#catName">Cat Name:</label></td>
<td><input type="text" id="catName"></td>
</tr>
<tr>
<td><label for="#catURL">Cat Image URL: </label></td>
<td><input type="text" id="catURL"></td>
</tr>
<tr>
<td><label for="#catClicks">Cat Clicks: </label></td>
<td><input type="text" id="catClicks"></td>
</tr>
<tr>
<td><button id="cancel" >Cancel</button></td>
<td><button id="submit" >Submit</button></td>
</tr>
</table>
</form>
</div>
<div class="footer">
Developed By: <a href="https://www.dotscreated.com">OneJeet</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="app.js" type="text/javascript"></script>
</body>
</html>