-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (50 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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" />
<title>Is Triangle?</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">fun With Triangle</div>
<ul class="non-bullets list-inline nav-pills">
<li><a href="/index.html" class="link active">Is Triangle ?</a></li>
<li><a href="/triangleQuiz.html" target="_blank" class="link">Triangle Quiz</a></li>
<li><a href="/hypotenuse.html" target="_blank" class="link ">Hypotenuse</a></li>
<li><a href="/areaOfTriangle.html" target="_blank" class="link">Area Of Triangle</a></li>
</ul>
</nav>
<main>
<h1>Angles of triangles</h1>
<label for="angle-1">Angle 1</label>
<input id="angle-1" type="number" class="User-input" placeholder="Enter Angle 1"/>
<label for="angle-2">Angle 2</label>
<input id="angle-2" type="number"class="User-input" placeholder="Enter Angle 2"/>
<label for="angle-3">Angle 3</label>
<input id="angle-3" type="number" class="User-input" placeholder="Enter Angle 3"/>
<button id="angle-check" type="button">CHECK</button>
<h2 class="angle-output-check"></h2>
</main>
<footer>
<div>
You can find me on :
<ul>
<li>
<a href="https://www.instagram.com/steppingbeyond_/" target="_blank" class="link fa fa-instagram"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kirti2714/" target="_blank" class="link fa fa-linkedin"></a>
</li>
<li>
<a href="https://twitter.com/KirtiSi70062355" target="_blank" class="link fa fa-twitter"></a>
</li>
</ul>
</div>
</footer>
</body>
<script src="/JS/isTriangle.js"></script>
</html>