-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 706 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 706 Bytes
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>
<head>
<title>Wavelength Calculator</title>
<script data-main="js/app" src="js/lib/require.js"></script>
</head>
<body>
<h1>Room Resonant Frequency Calculator</h1>
<p>Enter the size of your room <b>in meters</b> to find the resonant frequencies.</p>
<form id="sizeForm">
<input id="width" value="3.2" placeholder="Enter width in meters"/>
<input id="length" value="4.0" placeholder="Enter width in meters"/>
<input id="height" value="2.8" placeholder="Enter width in meters"/>
<button class="btn">Calculate</button>
</form>
<hr/>
<table>
<thead><tr>
<th>Frequencies</th>
</thead><tbody id="resultTable">
</tbody>
</table>
</body>
</html>