-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (44 loc) · 2.09 KB
/
Copy pathindex.html
File metadata and controls
54 lines (44 loc) · 2.09 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main Application</title>
<!-- Link to Bootstrap CSS for styling the application -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library for DOM manipulation and Bootstrap's JavaScript plugins -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<!-- Popper.js for managing popups and tooltips in Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<!-- Bootstrap's JavaScript library for interactive components -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Link to the favicon for the application -->
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<!-- Navigation Tabs for switching between the Graph Editor and Graph Analysis Tool -->
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="editor-tab" data-toggle="tab" href="#editor" role="tab">Graph Editor</a>
</li>
<li class="nav-item">
<a class="nav-link" id="analysis-tab" data-toggle="tab" href="#analysis" role="tab">Graph Analysis Tool</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<!-- Content for the Graph Editor tab -->
<div class="tab-pane fade show active" id="editor" role="tabpanel">
<iframe src="graph_editor_new.html" style="width: 100%; height: 100vh; border: none;"></iframe>
</div>
<!-- Content for the Graph Analysis Tool tab -->
<div class="tab-pane fade" id="analysis" role="tabpanel">
<iframe src="analysis_tool.html" style="width: 100%; height: 100vh; border: none;"></iframe>
</div>
</div>
<footer>
<p>Version: 1.0</p>
</footer>
</div>
</body>
</html>