Untitled

 avatar
unknown
plain_text
a year ago
4.9 kB
10
Indexable
<!DOCTYPE html>
<html lang="ur" dir="rtl">
<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;
            margin: 0;
            padding: 20px;
            background-color: #f0f8ff;
            color: #333;
        }
        .register-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            border: 1px solid #2c5e2e;
        }
        h1 {
            text-align: center;
            color: #2c5e2e;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2c5e2e;
            font-size: 28px;
        }
        .header-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            padding: 15px;
            background-color: #e9f5e9;
            border-radius: 8px;
            font-weight: bold;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
        }
        th {
            background-color: #2c5e2e;
            color: white;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f0f8f0;
        }
        .signature {
            margin-top: 30px;
            text-align: left;
            padding: 15px;
            border-top: 2px solid #2c5e2e;
            font-weight: bold;
        }
        @media print {
            body {
                background-color: white;
                padding: 0;
            }
            .register-container {
                box-shadow: none;
                border: none;
                padding: 15px;
            }
            .header-info {
                background-color: transparent;
            }
        }
        @media (max-width: 768px) {
            .header-info {
                flex-direction: column;
                gap: 10px;
            }
            th, td {
                padding: 8px;
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
    <div class="register-container">
        <h1>مسجد کے اخراجات کا سیلری رجسٹر</h1>
        
        <div class="header-info">
            <div>تاریخ: _________________</div>
            <div>مہینہ: _________________</div>
            <div>سال: _________________</div>
        </div>
        
        <table>
            <thead>
                <tr>
                    <th width="5%">نمبر شمار</th>
                    <th width="35%">شعبہ</th>
                    <th width="30%">رقم</th>
                    <th width="30%">دستخط</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>1</td>
                    <td>امام صاحب</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>2</td>
                    <td>مؤذن صاحب</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>3</td>
                    <td>خادم</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>4</td>
                    <td>خادم</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>5</td>
                    <td>بجلی کا بل</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>6</td>
                    <td>گیس کا بل</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>7</td>
                    <td>پانی کا بل</td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td>8</td>
                    <td>مسجد کے تعمیری کام</td>
                    <td></td>
                    <td></td>
                </tr>
            </tbody>
        </table>
        
        <div class="signature">
            <p>منجانب: _________________</p>
        </div>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment