-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (39 loc) · 1.23 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
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bezout Area Calculator</title>
<link href="style.css" rel="stylesheet" type="text/css">
<meta name = "keywords" content = "Polar, polari, Coordinate, Area, calculator, topography" />
<meta name = "description" content = "Area calculator using Simpson method" />
<meta name = "author" content = "Emanuele Sorce" />
<script type="text/javascript" src="gauss.js"></script>
</head>
<body onload="init()">
<center>
<noscript>
Sorry... JavaScript is needed to go ahead. Enable it in your browser to continue
</noscript>
<hr>
<h1>Area calculator - Bezout</h1>
<hr>
<table width="85%" border="10vmin" id="table">
<tr>
<td><b> </b></td>
<td><b><center>Value (m)</center></b></td>
</tr>
<tr>
<td colspan="2">
<center>
<input id="table_button" type="button" value="Add value" onClick="addPoint()" style="width:100%">
</center>
</td>
</tr>
</table>
<h3 id="area">AREA: </h3>
<br>
<hr>
<h7>Copyright(c) 2018 Emanuele Sorce<br><a href="https://tronfortytwo.github.io">Website</a><br>Licensed under GNU GPLv3 License</h7>
</center>
</body>
</html>