<!DOCTYPE html>
<html lang="ne">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>जोशी वंशवृक्ष: शिवदेवदेखि दर्शनराजसम्म</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f4f4f9;
            color: #333;
            padding: 20px;
        }
        .container {
            max-width: 800px;
            margin: auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        ul {
            list-style-type: none;
        }
        li {
            margin: 10px 0;
            padding-left: 20px;
            border-left: 2px solid #3498db;
            position: relative;
        }
        li::before {
            content: "•";
            color: #3498db;
            font-weight: bold;
            display: inline-block; 
            width: 1em;
            margin-left: -1em;
        }
        .branch-node {
            font-weight: bold;
            color: #2980b9;
        }
        .leaf-node {
            color: #7f8c8d;
        }
    </style>
</head>
<body>

<div class="container">
    <h1>जोशी वंशवृक्ष (Joshi Family Tree)</h1>
    <ul>
        <li><span class="branch-node">शिवदेव जोशी</span>
            <ul>
                <li><span class="branch-node">हर्षदेव जोशी</span>
                    <ul>
                        <li><span class="branch-node">वासुदेव जोशी</span>
                            <ul>
                                <li class="leaf-node">मोह देव जोशी</li>
                                <li><span class="branch-node">सोमदेव जोशी</span>
                                    <ul>
                                        <li><span class="branch-node">दण्डपाणी जोशी</span>
                                            <ul>
                                                <li><span class="branch-node">जीवराज जोशी</span>
                                                    <ul>
                                                        <li class="leaf-node">जनकराज जोशी</li>
                                                        <li class="leaf-node">दोजराज जोशी</li>
                                                        <li><span class="branch-node">पद्मराज जोशी</span>
                                                            <ul>
                                                                <li class="leaf-node">रेश्मीराज जोशी</li>
                                                                <li><span class="branch-node">माधवराज जोशी</span>
                                                                    <ul>
                                                                        <li class="leaf-node">रमेश राज जोशी</li>
                                                                        <li class="leaf-node">विजयराज जोशी</li>
                                                                    </ul>
                                                                </li>
                                                                <li><span class="branch-node">गोविन्दराज जोशी</span>
                                                                    <ul>
                                                                        <li><span class="branch-node">दीपकराज जोशी</span>
                                                                            <ul>
                                                                                <li class="leaf-node">दर्शनराज जोशी</li>
                                                                            </ul>
                                                                        </li>
                                                                        <li class="leaf-node">दिनेश राज जोशी</li>
                                                                    </ul>
                                                                </li>
                                                                <li class="leaf-node">विश्वकमल जोशी</li>
                                                            </ul>
                                                        </li>
                                                    </ul>
                                                </li>
                                            </ul>
                                        </li>
                                    </ul>
                                </li>
                                <li class="leaf-node">प्रेम देव जोशी</li>
                            </ul>
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
    </ul>
</div>

</body>
</html>