-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (34 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-75904806-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-75904806-3');
</script>
<title>Squire, Attend Me!</title>
<meta charset="utf-8">
<meta name="description" content="Ready, sir!">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#144844">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<audio id="knight-audio" src="knight.mp3" preload="auto">Squire, attend me!</audio>
<audio id="squire-audio" src="squire.mp3" preload="auto">Ready, sir!</audio>
<img id="knight-image" class="preload card" src="knight.png" alt="Silver Hand Knight, a 5 mana 4/4 Hearthstone minion with Battlecry: Summon a 2/2 Squire.">
<img id="squire-image" class="preload card" src="squire.png" alt="Squire, a 1 mana 2/2 Hearthstone minion.">
<footer>
<p>All assets from <a href="https://us.battle.net/hearthstone/">Hearthstone</a>, a fun and interactive digital card game by Blizzard Entertainment.</p>
</footer>
<script type="text/javascript" src="main.js"></script>
</body>
</html>