-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharea.html
47 lines (41 loc) · 1.66 KB
/
area.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
<!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">
<link rel="stylesheet" href="style.css" />
<title>Area of Triangle</title>
</head>
<body>
<div id="istri-bg">
<nav class="upper-nav">
<ul>
<li id="home"><a href="index.html">Fun With Triangles</a></li>
<li><a href="istriangle.html">Is Triangle?</a></li>
<li><a href="quiz.html">Triangle Quiz</a></li>
<li><a href="hypotenuse.html">Hypotenuse</a></li>
<li class="active"><a href="area.html">Area of Triangle</a></li>
</ul>
</nav>
<div class="area-centre">
<h1>Check Area of a Triangle</h1>
<h3 style="border: 2px solid;">Area of a Triangle = 1/2 (Base * Height)</h3>
<label>Base (in cm)</label>
<input class="side-input" type="number" />
<label>Height (in cm)</label>
<input class="side-input" type="number" />
<button id="checkarea-btn">Check Area</button>
<div id="output"></div>
</div>
</div>
<div class="social">
<ul>
<li><a target="_blank" class="link" href="https://www.linkedin.com/in/bhavya-joshi-438178184">LinkedIn</a></li>
<li><a target="_blank" class="link" href="https://github.com/bhavyaj12">Github</a></li>
<li><a target="_blank" class="link" href="https://bhavyaj-portfolio.netlify.app/">Portfolio</a></li>
</ul>
</div>
<script src="area.js"></script>
</body>
</html>