Posts
Showing posts from June, 2023
মিঞা বাড়ির বংশলতিকা
- Get link
- X
- Other Apps
<!DOCTYPE html> <meta charset="UTF-8"> <style> .node circle { fill: #031e02; stroke: rgb(6, 78, 48); stroke-width: 2px; } .node text { font: 11px sans-serif; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; fill: green; /* Change this to your desired font color */ } .link { fill: none; stroke: #334c3d; stroke-width: 2px; } </style> <body> <!-- load the d3.js library --> <script src="https://d3js.org/d3.v7.min.js"></script> <script> var treeData = { "name": "Mujaffar Ahmed Mia", "children": [ { "name": "Boro Fufu", "children": [ { "name": "Fatu Buji", "children": [ { "name": "Hasan" }, { "name": "A" } ] }, { "name...