-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 813 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XML Tree Visualizer</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; }
.container { margin-top: 50px; }
a { display: block; font-size: 20px; margin: 10px; text-decoration: none; color: steelblue; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h2>XML Visualizer</h2>
<h3>Using D3.js Library</h3>
<p>Examples of the XML structure conversion into the vertical or horizontal collapsible tree</p>
<div class="container">
<a href="vertical.html">View Vertical Tree</a>
<a href="horizontal.html">View Horizontal Tree</a>
</div>
</body>
</html>