-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horizontal Expanding Mindmap</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Horizontal Expanding Mindmap</h1>
<textarea id="input-area" placeholder="Paste your OPML or nested markdown list here..."></textarea>
<button id="generate-btn">Generate Mindmap</button>
<div class="color-options">
<button data-color="black">Black</button>
<button data-color="yellow">Yellow</button>
<button data-color="blue">Blue</button>
<button data-color="red">Red</button>
<button data-color="green">Green</button>
<button data-color="multi">Multi</button>
</div>
<div class="embed-section">
<button id="embed-btn">Get Embed Code</button>
<textarea id="embed-code" readonly></textarea>
</div>
<div id="mindmap-container"></div>
</div>
<script src="script.js"></script>
</body>
</html>