-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- import fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Concert+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Concert+One&family=Outfit&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<main>
<h1>Berries In the United States</h1>
<div class = "text">
<label for = "year">a visualizaion of the ratio of berries harvested in: </label>
<input type = "number" min="1971" max="2020" id = "yearInput" >
</div>
<p id = "error-message">please enter a year between 1971 and 2020</p>
</main>
<script src="sketch.js"></script>
<input type = "button" id="finalizeButton" value = "STOP">
<input type = "button" id="resetButton" value = "RESET">
<p id ="data-source" class = "text"> DATA FROM DATA.UN.ORG </p>
</main>
</body>
</html>