-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<title>Mathematical Formula Reference and Calculator</title>
<meta charset="UTF-8">
<meta name="description" content="All the formulas you will need for math class."/>
<meta name="keywords" content="Calculator,Formula,Mathematics,Math,Area,Perimeter,Surface-Area,Circumference,Volume,Pythagorean-Theorem"/>
<meta name="author" content="Lucas Wilson"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="icon/mathicon.ico" rel="icon" />
<link href="css/Styles.css" type="text/css" rel="stylesheet" id="stylesheetLink"/> <!-- Links to external stylesheet -->
<script src="js/script.js" type="text/javascript"> <!-- Links to external script -->
</script>
<!--<script src="js/nightMode.js" type="text/javascript">
</script> keeping this off because it seems not to be working with the polygonPerimeterApp iframe-->
<body>
<header>
<h1 class="top01">Mathematical Formula Reference and Calculator</h1>
<p class="top02">All the Formulas You Will Ever Need For Math Class</p>
<nav>
<button onclick="showArea()">Area</button>
<button onclick="showPerimeter()">Perimeter</button>
<button onclick="showVolume()">Volume</button>
<button onclick="showSurfaceArea()">Surface Area</button>
<button onclick="showMisc()">Other Formulas</button>
</nav>
</header>
<br/>
<main>
<noscript>Unfortunately, JavaScript is either not supported or is blocked on your browser. Switch to another browser or enable JavaScript to use this site.</noscript>
<div id="selectFormulaArea">
<!-- When a button is pressed, this shows up.
Until a button is pressed, the below will show up. -->
<p id="instructions">Press one of the above buttons to begin.</p>
</div>
<br/>
<br/>
<div id="formulaArea">
<!-- When a button is pressed, this shows up. -->
</div>
<br/>
<br/>
<div id="calculatorArea">
<!-- When a button is pressed, this shows up. -->
</div>
</main>
<!--
Unused nightMode functionality
<footer>
<button id="nightModeButton" onClick="nightMode('css/NightMode.css')">Night Mode</button>
</footer>-->
</body>
</html>