-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Author" content="Mohasin">
<link rel="stylesheet" href="./style.css ">
<title>Fun with Triangles</title>
</head>
<body>
<nav class="navigation">
<a class="links" href="./index.html">Is Triangle</a>
<a class="links" href="./quiz.html">Triangle Quiz</a>
<a class="links" href="./hypotenuse.html">Calculate Hypotenuse</a>
<a class="links" href="./area.html">Area of Triangle</a>
</nav>
<h1>Is Triangle?</h1>
<label for="angle1">angle1</label>
<input type="number" class="angle-input" />
<label for="angle2">angle2</label>
<input type="number" class="angle-input" />
<label for="angle3">angle3</label>
<input type="number" class="angle-input" />
<button id="is-triangle-btn">Is Triangle?</button>
<div id="output"></div>
<script src="./isTriangle.js"></script>
</body>
</html>