-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="http://www.iconarchive.com/download/i66332/thegirltyler/brand-camp/Camp-Fire-Stories.ico">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script type="text/javascript" src="index.js"></script>
<title>Scouting Adventures</title>
</head>
<body>
<div id="main">
<h3>Welcome to your Scout Dashboard!</h3>
<h5>This is the place where you can review your entire life of Scouts! This is where you can hike, go on camp-outs, and take classes! Doing those will earn you Scout points, and the more points you earn the higher your rank!</h5>
<p id="stats" onclick="stats()">Click here to see your stats!</p>
<div id="buttons">
<input class="buttonthings" type="button" value="Attend a class" onclick="classes()"/>
<input class="buttonthings" type="button" value="Go on a hike" onclick="hike()"/>
<input class="buttonthings" type="button" value="Go on a camp-out" onclick="camp()"/>
</div>
<div id="meritdis">
<p onclick="meritDis()">Click here to see or refresh your merit awards!</p>
<ul>
<li class="merit" id="fish"></li>
<li class="merit" id="swim"></li>
<li class="merit" id="camp"></li>
<li class="merit" id="f_aid"></li>
<li class="merit" id="music"></li>
<li class="merit" id="hike"></li>
</ul>
</div>
</div>
<h4 id="support">Questions? Comments? Concerns? Please contact: <a href="mailto: ceo.xanstudios.com">[email protected]</a></h>
</body>
</html>