forked from leighPri/Farmhand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.17 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
<html lang="en" xml:lang="en" xmlns= "http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<meta name="google" content="notranslate">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<title>Farmhand</title>
</head>
<body>
<div class="header">
<div class="title">Farmhand</div>
</div>
<div class="help-button" onClick="showModal('help')">?</div>
<div class="main-container">
<div id="top-bar">
</div>
<div id="card-container">
</div>
</div>
<div class="footer">
Copyright 2017 Leigh Prince
<br><div class="footer-link" onClick="showModal('dataNotice')">Data Use Notice</div>
</div>
<div id="modal-overlay">
<div class="modal" id="help-modal">
<div class="dismiss-modal" onClick="hideModal()">X</div>
<div id="modal-content">
</div>
</div>
</div>
<script src="./js/save.js"></script>
<script src="./js/render.js"></script>
<script src="./js/app.js"></script>
</body>
</html>