-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (24 loc) · 855 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
27
28
29
30
31
32
33
<!doctype HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cat Clicker. Wow</title>
<meta name="description" content="Cat Clicker">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Cat Clicker">
<meta name="author" content="Wojciech Zając">
<link rel="stylesheet" href="css/app.css">
<link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/favicon-16x16.png" sizes="16x16" />
</head>
<body>
<h1 class="header">Click on the cats!</h1>
<ul class="cat-list"></ul>
<div class="cat">
<h2 class="cat-name"></h2>
<img src="" alt="cat" class="cat-img">
<div class="click-count"></div>
</div>
<script src="js/app.js"></script>
</body>
</html>