-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.2 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.2 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Random Meadow 🌾</title>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/sheaf-of-rice.png" type="image/x-icon" />
<link rel="apple-touch-icon" href="images/sheaf-of-rice.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="white"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Hello World">
<meta name="msapplication-TileImage" content="images/sheaf-of-rice.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
</head>
<body class="fullscreen">
<div class="container">
<div id="meadowContainer" class="meadowContainer"></div>
<button id="randomButton">Random Meadow</button>
<img id="shareButton" width="15px" height="20px" src="./images/Navigation_Action_2x.png"/>
</div>
<br>
<a href="https://github.com/yonatankalman/random-meadow-pwa">Github</a>
<script src="js/main.js"></script>
<script src="js/index.js"></script>
</body>
</html>