-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmindmapCanvas.html
More file actions
35 lines (34 loc) · 1.34 KB
/
Copy pathmindmapCanvas.html
File metadata and controls
35 lines (34 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MindMap Canvas</title>
<link rel = "stylesheet" href="general.css">
<link rel = "stylesheet" href="styleMM.css">
</head>
<body>
<script src = "general.js"></script>
<div id = "main">
<span id = "NavBtn" onclick="openNav()">☰</span>
<div id="mySidenav" class = "sidenav">
<img id = "appIcon" src = "Mint Parchment App Icon.png">
<a href="#">New Session</a>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#" onclick = "window.open('mindmapCanvas.html','_blank')">Draw MindMap</a>
<a href="#" id="noteBtn">Open Notes</a>
<a href="#">Clients</a>
<a href="#">Contact</a>
<br>
<br>
<p id = "chatHeader" style="text-align: center; margin-right: 5%;"><strong>Chat History</strong></p>
</div>
<div class = "container">
<canvas id="MindMapCanvas">
Your browser does not support the HTML canvas element.
</canvas>
</div>
</div>
</body>
<footer class="site-footer">
<p>© 2025 Mint Parchment. All rights reserved.</p>
</footer>
</html>