forked from Niam-Sword/App5
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
610 lines (449 loc) · 22.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
<!DOCTYPE html>
<html>
<!-- The following code has been developed by students and/or researchers of the Freshman Research Initiative DIY Diagnostics Stream at The University of Texas at Austin. This code is shared for demonstration purposes and should not be considered a product -- it is for entertainment purposes only. Any user of this code does so at their own risk. Members of the DIY Stream, FRI, and The University of Texas system are not liable for anything related to this code.
THIS CODE SHOULD NOT BE USED TO DIAGNOSE ANY KIND OF MEDICAL CONDITION.
Authors in chronological order of contribution:
Tim Riedel
Niam Kuttanna
Ari Nehrbass
Further Information:
http://diystream.cns.utexas.edu/
Research Educator:
Timothy Riedel
Brief Description of Goal of Code:
To determine the most likely species of an organism via a series of taxonomic questions. The website can be found at the following link: https://makerspace-fri-utaustin.github.io/Macro-ID-App/#home
Known Issues:
Missing Diptera and Insect keys
-->
<!--Header displays app title at the top of the page-->
<head>
<title>Austin Macroinvertebrate Key</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="w3-colors-flat.css">
</head>
<!--Script details Javascript functions for storage functions and calculations-->
<script>
// Stores all of the species in the database - DO NOT MODIFY WITH FUNCTIONS
var speciesList = ["Asian Clam", "Fingernail Clam", "Ancylid", "Seed Shrimp", "Mite", "Amphipod", "Collembola", "Bladder Snail", "Pond Snail", "Rams Horn Snail", "Flatworm", "Leech", "Roundworm"];
var familyList = ["Corbiculidae", "Pisidiidae", "Ancylid", "Ostracoda", "Hydrachnidia", "Hyalella", "Collembola", "Physidae", "Lymnaeidae", "Planorbidae", "Dugesia", "Hirudinea", "Oligochaeta"];
// Dynamically stores the possible species based on taxonomy, initiated in "home" function
var possibilities = [];
// Stores the latest eliminated species
var lastChange = [];
// Removes a species from the possibilities list
function eliminate(speciesName)
{
var index = possibilities.indexOf(speciesName);
if(index > -1)
{
lastChange.push(speciesName);
possibilities.splice(index, 1);
}
console.log("Possibilities:");
console.log(possibilities);
}
// Determines text for result page
function calculate()
{
console.log("Number of possibilities: " + possibilities.length);
if(possibilities.length == 1)
{
var finalSpecies = possibilities[0];
console.log("Final species: " + finalSpecies);
var finalFamily = familyList[speciesList.indexOf(finalSpecies)];
console.log("Final family: " + finalFamily);
document.getElementById("results").innerHTML = "Species: " + finalSpecies + "<br>Family: " + finalFamily;
}
else
{
document.getElementById("results").innerHTML = "Multiple species fit your specified criteria. The program was unable to determine a final result.";
}
}
// Undoes the last change
function undo(numberOfInstances)
{
if(lastChange.length > 0)
{
for(var i = 0; i < numberOfInstances; i++)
{
possibilities.push(lastChange.pop(lastChange.length - 1));
}
console.log("Possibilities:");
console.log(possibilities);
}
else
{
alert("No change to undo.");
}
}
// Resets all variables to their default state
function home()
{
for(var i = 0; i < speciesList.length; i++)
{
possibilities[i] = speciesList[i];
}
lastChange = [];
alert("Reset all variables.");
console.log("Possibilities:");
console.log(possibilities);
console.log("lastChange:");
console.log(lastChange);
console.log("speciesList:");
console.log(speciesList);
}
</script>
<!--Allows for multiple mini pages to be displayed within the single overall app, and describes the format.-->
<style>
.body
{
margin: 0em;
}
.page
{
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: -100vw;
overflow-y: auto;
z-index: 0;
background-color: hsl(0,0%,100%);
}
.page:target
{
left: 0vw;
z-index: 1;
}
.dynamicimg
{
max-width: 100%;
height: auto;
}
.button1 {
background-color: #008B8B;
border: none;
border-radius: 12px;
color: white;
padding: 15px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
cursor: pointer;
width: 600px
transition-duration: 0.4s;
}
.button1:hover {
background-color: #4CAF50; /* Green */
color: white;
}
.button2 {
background-color: #000000;
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
width: 400px;
cursor: pointer;
transition-duration: 0.1s
}
.button2:hover {
box-shadow: 0px 0px 5px #000000;
}
</style>
<!--Default Page: Describes the content of the pages within the app.-->
<body>
<div id="header" class="w3-container w3-flat-carrot">
<h1>Austin Insect Key</h1>
</div>
<!--This represents the home page and contains a description of the app and its purpose.-->
<div id="content" class="w3-container">
<a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
<div class="page" id="home">
<div id="header" class="w3-container w3-flat-carrot w3-center">
<h1>Austin Macroinvertebrates</h1>
</div>
<div class="w3-container w3-white w3-center">
<h2>Insect Key</h2>
<p>This app determines the most likely genus of benthic macroinvertebrate found in
<br>Austin, TX based on answers to a series of taxonomic questions.</p>
</div>
<!--Button: The following button takes the user to the start of the process.-->
<center>
<br>
<a href="#legsPage" onclick="home();" class="button1">
<img id="homeBug" src="https://i.imgur.com/KjVFHUa.png" alt="homeBug" class="dynamicimg w3-round">
<br> Begin
</a>
<br>
<center>
<!--Footer: The following is the footer at the bottom of the page.-->
<div class="w3-container w3-white w3-center">
<br><br>
<p style="font-size:8px;">The following code has been developed by students and/or researchers of the Freshman Research Initiative
Urban Ecosystems Stream at The University of Texas at Austin. Members of the UE Stream, FRI, and The University of Texas
system are not liable for anything related to this code.</p>
</div>
<!--Question 1: This represents the page which contains the LEGS question.-->
<div class="page" id="legsPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 1</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Does the organism have legs?</p>
<a href="#mitePage" onclick="eliminate('Asian Clam');eliminate('Fingernail Clam');eliminate('Ancylid');eliminate('Seed Shrimp');eliminate('Bladder Snail');eliminate('Pond Snail');eliminate('Rams Horn Snail');eliminate('Flatworm');eliminate('Leech');eliminate('Roundworm');" class="w3-btn w3-black">Yes<br><img id="legsimg" src="https://media.proprofs.com/images/QM/user_images/3073412/6863043831.jpg" alt="organismwithlegs" class="dynamicimg"></a>
<br>
<br><a href="#seedPage" onclick="eliminate('Amphipod');eliminate('Mite');eliminate('Collembola');" class="w3-btn w3-black">No<br><img id="nolegsimg" src="https://media.proprofs.com/images/QM/user_images/3073412/5839716193.jpg" alt="organismwithoutlegs" class="dynamicimg"></a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 2: This represents the page which contains the SEED question.-->
<div class="page" id="seedPage">
<div class="w3-container w3-flat-carrot">
<h1>Question 2</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Does the organism look like a small, clear seed?</p>
<a href="#resultsPage" onclick="eliminate('Asian Clam');eliminate('Fingernail Clam');eliminate('Ancylid');eliminate('Bladder Snail');eliminate('Pond Snail');eliminate('Rams Horn Snail');eliminate('Flatworm');eliminate('Leech');eliminate('Roundworm');calculate();" class="button2">Yes<br>
<img id="seedshrimpimg" src="https://imgur.com/xAXYzuC.png" alt="seedshrimp" class="dynamicimg"></a>
<br>
<a href="#shellPage" onclick="eliminate('Seed Shrimp');" class="button2">No</a>
<br>
<br><a href="javascript:history.back()" onclick="undo(3);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 3: This represents the page which contains the MITE question.-->
<div class="page" id="mitePage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 3</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Is the organism a mite, amphipod, collembola (very small), or none of the above (class: insecta)?</p>
<a href="#resultsPage" onclick="eliminate('Amphipod');eliminate('Collembola');calculate();" class="w3-btn w3-black">Mite<br><img id="miteimg" src="https://media.proprofs.com/images/QM/user_images/3073412/1693950438.jpg" alt="mite" class="dynamicimg"></a>
<br>
<br><a href="#resultsPage" onclick="eliminate('Mite');eliminate('Collembola');calculate();" class="w3-btn w3-black">Amphipod<br><img id="amphipodimg" src="https://media.proprofs.com/images/QM/user_images/3073412/3544964702.png" alt="amphipod" class="dynamicimg"></a>
<br>
<br><a href="#resultsPage" onclick="eliminate('Mite');eliminate('Amphipod');calculate();" class="w3-btn w3-black">Collembola<br><img id="collembolaimg" src="https://media.proprofs.com/images/QM/user_images/3073412/4470076056.jpg" alt="collembola" class="dynamicimg"></a>
<br>
<a href="#insectPage" onclick="eliminate('Mite');eliminate('Amphipod');eliminate('Collembola');" class="button2">None of the Above<br>
<img id="classinsectaimg" src="https://media.proprofs.com/images/QM/user_images/3073412/5192289208.jpg" alt="classinsecta" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo(10);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--This represents the page which contains the SHELL question.-->
<div class="page" id="shellPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 4</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Does the organism have a shell?</p>
<a href="#shelltypesPage" onclick="eliminate('Flatworm');eliminate('Leech');eliminate('Roundworm');" class="button2">Yes<br>
<img id="shellimg" src="https://imgur.com/8UKnXKp.jpg" alt="shell" class="dynamicimg"></a>
<br>
<a href="#oblongPage" onclick="eliminate('Asian Clam');eliminate('Fingernail Clam');eliminate('Ancylid');eliminate('Bladder Snail');eliminate('Pond Snail');eliminate('Rams Horn Snail');" class="button2">No<br> <!-- GoTo QUESTION 8-->
<img id="noshellimg" src="https://imgur.com/WqhBCGC.jpg" alt="noshell" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo(1);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 5: This represents the page which contains the SHELLTYPES question.-->
<div class="page" id="shelltypesPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 5</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>What is the organism's type of shell?</p>
<a href="#clamPage" onclick="eliminate('Ancylid');eliminate('Bladder Snail');eliminate('Pond Snail');eliminate('Rams Horn Snail');" class="button2">Bivalve/Clam (two hinged pieces)<br> <!--Go to QUESTION 6-->
<img id="bivalveimg" src="https://imgur.com/QhRxXVx.jpg" alt="bivalve" class="dynamicimg"></a>
<br>
<a href="#resultsPage" onclick="eliminate('Asian Clam');eliminate('Fingernail Clam');eliminate('Bladder Snail');eliminate('Pond Snail');eliminate('Rams Horn Snail');calculate();" class="button2">Small Dome (single piece)<br>
<img id="smalldomeimg" src="https://imgur.com/zcmbogG.jpg" alt="smalldome" class="dynamicimg"></a>
<br>
<a href="#snailPage" onclick="eliminate('Asian Clam');eliminate('Fingernail Clam');eliminate('Ancylid');" class="button2">Gastropod/Snail (single piece, spiral or swirl)<br> <!--Go to QUESTION 7-->
<img id="gastropodimg" src="https://imgur.com/m29Kwn6.jpg" alt="gastropod" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo();" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 6: This represents the page which contains the CLAM question.-->
<div class="page" id="clamPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 6</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>The organism is a clam. Which of the following best describes it?</p>
<!--End branch. The organism is an Asian clam.-->
<a href="#resultsPage" onclick="eliminate('Fingernail Clam');calculate();" class="button2">Dark yellow to brown or black in color, pronounced ridges along shell<br>
<img id="darkyellowimg" src="https://imgur.com/ptu9UQQ.jpg" alt="darkyellow" class="dynamicimg"></a>
<br>
<!--End branch. The organism is a fingernail clam.-->
<a href="#resultsPage" onclick="eliminate('Asian Clam');calculate();" class="button2">Pale yellow, less defined/smoother ridges (typically smaller than the above, can be semi-transparent)<br><img id="paleyellowimg" src="https://imgur.com/nWIeOG3.jpg" alt="paleyellow" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo(4);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 7: This represents the page which contains the SNAIL question.-->
<div class="page" id="snailPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 7</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>What is the orientation of the snail shell?</p>
<a href="#resultsPage" onclick="eliminate('Pond Snail');eliminate('Rams Horn Snail');calculate();" class="button2">The opening is to the left of the spiral<br> <!--End of branch. Physidae -->
<img id="physidaeimg" src="https://imgur.com/DLUvemN.jpg" alt="physidae" class="dynamicimg"></a>
<br>
<a href="#resultsPage" onclick="eliminate('Bladder Snail');eliminate('Rams Horn Snail');calculate();" class="button2">The opening is to the right of the spiral<br> <!--End of branch. Lymnaeidae-->
<img id="lymnaeidaeimg" src="https://imgur.com/yluTUFA.jpg" alt="lymnaeidae" class="dynamicimg"></a>
<br>
<a href="#resultsPage" onclick="eliminate('Bladder Snail');eliminate('Pond Snail');calculate();" class="button2">The spiral is round and flat. The opening has no leaning<br> <!--End of branch. Planorbidae.-->
<img id="planorbidaeimg" src="https://imgur.com/PQgRhmE.jpg" alt="planorbidaeimg" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo();" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 8: This represents the page which contains the FLATWORM question.-->
<div class="page" id="oblongPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 8</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Is your organism oblong and flat with visible eyespots?</p>
<a href="#resultsPage" onclick="eliminate('Leech');eliminate('Roundworm');calculate();" class="button2">Yes<br> <!--End of branch. Dugesia -->
<img id="dugesiaimg" src="https://imgur.com/dM8dJuX.jpg" alt="dugesia" class="dynamicimg"></a>
<br>
<a href="#leechPage" onclick="eliminate('Flatworm');" class="button2">No, my organism does not have these features.</a>
<br>
<br><a href="javascript:history.back()" onclick="undo(6);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 9: This represents the page which contains the LEACH question.-->
<div class="page" id="leechPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 9</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Does your organism have a tapered elongate body with a suction cup at either end?</p>
<a href="#resultsPage" onclick="eliminate('Roundworm');calculate();" class="button2">Yes, my organism has suction cups<br> <!--End of branch. Hirudinae -->
<img id="hirudinaeimg" src="https://imgur.com/sZeoJ0E.jpg" alt="hirudinae" class="dynamicimg"></a>
<br>
<a href="#wormPage" onclick="eliminate('Leech');" class="button2">No, my organism does not have suction cups.</a>
<br>
<br><a href="javascript:history.back()" onclick="undo(1);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--QUESTION 10: This represents the page which contains the WORM question.-->
<div class="page" id="wormPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 10</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Is your organism long and thin with repeating identical segments? Does your organism have no visible eyes and no head capsule? Are there no significant irregularities in width or unusual projections?</p>
<!--add eliminate function when diptera is added-->
<a href="#resultsPage" onclick=" ;calculate();" class="button2">Yes, this description fits my organism. My organism looks like a roundworm.<br> <!--End of branch. Oligochaeta. -->
<img id="oligochaetaimg" src="https://imgur.com/C1SEOcf.jpg" alt="oligochaeta" class="dynamicimg"></a>
<br>
<a href="#dipteraPage" onclick="eliminate('Roundworm');" class="button2">No, my organism has some features such as eyes, a head capsule, or protrusions that distinguish one end from the other.</a>
<br>
<br><a href="javascript:history.back()" onclick="undo(1);" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--This represents the page which contains the INSECT FAMILY question.-->
<div class="page" id="insectPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question </h1>
</div>
<div id="content" class="w3-container">
<center>
<p>Your organism is an insect. Now we need to know what family it belongs to. </p>
<a href="#dipteraPage" onclick=" ;" class="button2">Order Diptera (fly larvae)<br><img id="dipteraimg" src="https://i.imgur.com/UsxbwOO.jpg" alt="diptera" class="dynamicimg"></a>
<br>
<a href="#elmidaeAdultsPage" onclick=" ;" class="button2">Order Elmidae (adult beetles)<br><img id="beetleimg" src="https://imgur.com/w6Z58pS.jpg" alt="beetle" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo();" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--This represents the page which contains the ORDER: DIPTERA question.-->
<div class="page" id="dipteraPage">
<div id="header" class="w3-container w3-flat-carrot">
<h1>Question 7</h1>
</div>
<div id="content" class="w3-container">
<center>
<p>ORDER: DIPTERA. Which of the following best describes your diptera larva? </p>
<a href="#simuliidaePage" onclick=" ;" class="w3-btn w3-black">One small fleshy proleg near the head (A). The back end looks plump and swollen (B). <br>Two large labral fans protrude from the head for collecting food (C).<br><img id="simuliidaeimg" src="https://i.imgur.com/Trq88ps.png" alt="simuliidae" class="dynamicimg"></a>
<br>
<!--End branch. The organism is a Chironomidae.-->
<a href="#resultsPage" onclick=" ;" class="w3-btn w3-black">Two sets of fleshy prolegs: one at the front end (A) and one at the back end (B). <br> The head capsule is round and easily identifiable. The organism often rests in a curved fetal position after being treated with ethanol. <br>They are often very small and appear whitish-yellowish in color.<br><img id="simuliidaeimg" src="https://i.imgur.com/Trq88ps.png" alt="simuliidae" class="dynamicimg"></a>
<br>
<br><a href="javascript:history.back()" onclick="undo();" class="w3-btn w3-grey w3-round">Go Back</a>
<br>
<br><a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
<!--This represents the final results page, displaying the determined species.-->
<div class="page" id="resultsPage">
<div class="w3-container w3-flat-carrot">
<h1>Results</h1>
</div>
<div id="content" class="w3-container">
<center>
<p id="results">Results display here.</p>
<a href="#home" onclick="home();" class="w3-btn w3-grey w3-round">Home Page</a>
</center>
</div>
</div>
</body>
</html>