-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script
src="https://use.fontawesome.com/releases/v5.15.1/js/all.js"
data-auto-a11y="true"
></script>
<link href="styles/styles.css" rel="stylesheet" />
<title>Travel Plan</title>
</head>
<body>
<div id="container">
<div id="mynetwork">
</div>
<div id="container2">
<span id="temptext2" style="width: 100%; text-align: center; font-size: x-large">
</span>
<span id="temptext" style="width: 100%; text-align: center; font-size: x-large">
Red link represents bus travel time : <i class="fa fa-bus" aria-hidden="true" style="color: orange"></i><br>
Green link represents flight travel time : <i class="fa fa-plane" aria-hidden="true" style="color: green"></i><br>
Click on solve to get Solution !!
</span>
<div id="mynetwork2" style="display: none"></div>
</div>
</div>
<div>
<br>
<button type="button" class="btn btn-primary" id="generate-graph">Get New Problem</button>
<br>
<button type="button" class="btn btn-success" id="solve">Solve</button>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
<script src="js/setup.js"></script>
</body>
</html>