-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (63 loc) · 1.73 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
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width= device-width, initial-scale= 1">
<title>Cat Clicker</title>
<link href="css/styles.css" type="text/css" rel="stylesheet">
</head>
<body>
<header><h1>Cat Clicker</h1></header>
<div class="container">
<ul class="cat-list"></ul>
<span>Hey there! Meet <p class="cat-name"></p></span>
<div class="image-display">
<button class="clicker">
<img src="" alt="cute cats">
</button>
<button class="cat-change next">
<img src="img/arrow.png" alt="next button icon">
</button>
<button class="cat-change previous">
<img src="img/arrow.png" alt="previous button icon">
</button>
</div>
<button class="attribution">
<a class="link" target="_blank">Photo Credits</a>
</button>
<div class="count-and-admin">
<div class="count-display">
<p>Clicks:</p> <p class="counter"></p>
</div>
<button class="admin-button">Admin</button>
</div>
</div>
<div class="admin container">
<form class="admin-form">
<div>
<label for="name">Name: </label>
<input type="text" id="name">
</div>
<div>
<label for="url">URL: </label>
<input type="url" id="url">
</div>
<div>
<label for="clicks">Clicks: </label>
<input type="number" id="clicks">
</div>
<div>
<button class="cancel-button" type="button">Cancel</button>
<button class="save-button" type="button">Save</button>
</div>
</form>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="js/main.js"></script>
</body>
</html>