-
Notifications
You must be signed in to change notification settings - Fork 0
/
area.html
26 lines (26 loc) · 851 Bytes
/
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
<!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>
<nav class="navigation">
<a href="./index.html">Is Triangle</a>
<a href="./quiz.html">Triangle Quiz</a>
<a href="./hypotenuse.html">Calculate Hypotenuse</a>
<a href="./area.html">Area of Triangle</a>
</nav>
<h1>Area of Triangle</h1>
<label>Base</label>
<input type="number" class="side-input"/>
<label>Height</label>
<input type="number" class="side-input"/>
<button id="area-btn">Area of Triangle</button>
<div id="output"></div>
<script src="./area.js"></script>
</body>
</html>