-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie-edge"/>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"
integrity="sha512-RvZgNFwDeJ4oPjuhkIrBki+I1LjEW6TXbQ+qHFKEPOR126hk1dkg+cvOCW6vUTHQEcryzTmEzTkvHKcGpEFNUw=="
crossorigin="anonymous">
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"
integrity="sha512-lfl7IG9TmPKTuZ2ZIx2xfPRn2qWnfIleGc1LR7gm9jZOUVjki7lWJZJb1aB6AmxW3IL+2H98CgnXM3KtUV9BWw=="
crossorigin="anonymous">
</script>
<link rel="stylesheet" type="text/css" href="style.css"/>
<title>Document</title>
</head>
<body>
<script src="sketch.js"></script>
<h1>Geo Selfie App - New Entry</h1>
<div><a href="index.html">enter</a> | <a href="home.html">list</a></div>
<p id="degrees display">
latitude: <span id="latitude"></span>°</br>
longitude: <span id="longitude"></span>°</br>
</br>
<label for="userSaid"><b>Say Something to Remember</b></label></br>
<input id="userSaid"/>
<button id="submit">Submit</button>
</p>
</body>
</html>