-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Numerical Methods - Project</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name="theme-color" content="#9d53c6">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Fredoka&family=Lato&family=Montserrat&family=Open+Sans&family=Poppins&family=Quicksand&family=Righteous&family=Roboto&display=swap"
rel="stylesheet">
<script src="./interpolation.js" type="text/javascript"></script>
<link href="./style.css" type="text/css" rel="stylesheet">
<script src="https://apis.mapmyindia.com/advancedmaps/v1/0fc9fdf02f400b7e205df1e5149fd9f1/map_load?v=1.5"></script>
</head>
<body>
<h1 style="text-align: center; font-size: 1.5em;">Polyline Interpolation 📍</h1>
<div class="container glass">
<div class="form-container">
<p style="text-align: center; font-weight: bold; font-size: 1.25rem;">Input Parameters</p>
<form class="glass">
<label for="posA">Enter Position A: </label>
<input type="text" required name="posA" id="posA" placeholder="13.0416, 77.6096">
<br />
<label for="posB">Enter Position B: </label>
<input type="text" required name="posB" id="posB" placeholder="12.8981, 77.6765">
<br />
<button type="submit" id="submit">Submit</button>
<button type="reset" id="reset">Reset</button>
</form>
<p id="output">Execution Time: <b></b></p>
</div>
<div id="map"></div>
</div>
<footer class="glass">
<p>Made with ♥️ & 🍫 by Nishith P</p>
</footer>
<script src="./script.js" type="text/javascript"></script>
</body>
</html>