-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.48 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
<!DOCTYPE html>
<html lang = "en">
<head>
<link rel="stylesheet" href="styles.css"> <!-- This refrences the style sheet.-->
<meta charset = "UTF-8">
<meta http-equiv = "X-UA-Compatible">
<meta name = "viewpoint" content = "width=device-width">
<title>Geometrey Solver (WIP)</title>
<link rel="shortcut icon" href="https://github.com/Arch881010/Geometry-Solver-WebTest/blob/main/favicon.ico" type="image/x-icon">
</head>
<body>
<h1 class = "text">Math</h1>
<h10 class = "text" id = "h10"></h10><br>
<label for="type-math" id="math"> Choose type of Math:</label>
<select name="type-math" id = "math-type">
<option value="blank">Please Choose an Option</option>
<option value="distance">Point Distance</option>
<option value="AoT">Area of A Triangle</option>
<option value="AoC">Area of a Circle</option>
<option value="CoC">Circumference of a Circle</option>
<option value="SAoCu">Surface Area of a Cube</option>
<option value="VoCu">Volume of a Cube</option>
<option value="VoCo">Volume of a Cone</option>
<option value="VoCy">Volume of a Cylinder</option>
<option value="VoSp">Volume of a Sphere</option>
</select>
<button id="submit">Submit</button><br>
<div id = 'div'>
</div>
<script src = "a.js"></script> <!-- This refrences a.js-->
<div class="owner" ><br>
<b>Owner:</b> Arch881010<br>
<b>Repositroy:</b> https://github.com/Arch881010/Geometry-Solver-WebTest<br>
<b>Last Updated:</b>October 20, 2022<br>
</div>
</body>
</html>