-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
28 lines (28 loc) · 1008 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="viewport" content="width=device-width" />
<title>Pocket Kitten</title>
<link rel="stylesheet" type="text/css" href="style/pocket-kitten.css"/>
<script defer type="application/javascript" src="js/pocket-kitten.js"></script>
</head>
<body role="application">
<section role="region">
<header aria-level="1">
<h1>Pocket Kitten</h1>
<button id="btnInstall">Installarama</button>
</header>
<figure class="show-kitten">
<div>
<p id="loader">Luring a new kitten…</p>
<img id="kitten-image" src="style/images/fetching.gif" alt="A picture of a kitten" />
<span></span>
</div>
<figcaption>Tap to see a new little kitty</figcaption>
</figure>
</section>
<a href="https://github.com/Rumyra/Pocket-Kitten" class="github-ribbon">View code on Github</a>
</body>
</html>