File size: 3,291 Bytes
5f3e9f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="ne">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Educated Nepal - Study Notes</title>
    <style>
        body {
            font-family: "Nirmala UI", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            border-bottom: 2px solid #3498db;
            padding-bottom: 15px;
            margin-bottom: 18px;
            font-size: 28px;
            font-weight: 700;
        }
        .meta {
            text-align: center;
            color: #7f8c8d;
            font-size: 14px;
            margin: 0 0 22px;
        }
        .exercise-title {
            background-color: #eaf7ff;
            padding: 10px 15px;
            border-radius: 6px;
            margin: 18px 0;
            font-weight: bold;
            color: #2980b9;
        }
        .section-number {
            font-weight: bold;
            color: #e74c3c;
            margin-right: 6px;
        }
        .vocabulary-item {
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #eee;
        }
        .question {
            font-weight: bold;
            margin: 14px 0 8px;
            padding-left: 8px;
            border-left: 3px solid #3498db;
        }
        .answer {
            background-color: #f8f9fa;
            padding: 12px 15px;
            border-radius: 6px;
            border-left: 3px solid #3498db;
            margin-bottom: 14px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            background: #fff;
        }
        table, th, td {
            border: 1px solid #ddd;
            padding: 10px 12px;
            vertical-align: top;
        }
        th {
            background-color: #f2f2f2;
            text-align: left;
            font-weight: 700;
        }
        tr:nth-child(even) {
            background-color: #fafafa;
        }
        tr:hover {
            background-color: #f1f9ff;
        }
        .subscribe {
            margin-top: 40px;
            padding: 18px;
            border-top: 2px solid #3498db;
            text-align: center;
            font-family: "Segoe UI", Arial, sans-serif;
            background: #fff;
            border-radius: 8px;
        }
        .subscribe h2 {
            margin: 0 0 8px;
            color: #2980b9;
            font-size: 20px;
            font-weight: 700;
        }
        .subscribe p {
            margin: 0;
            color: #555;
        }
    </style>
</head>
<body>
    <h1>Educated Nepal - Study Notes</h1>
    <div class="meta">Class 8, 9, 10, 11 & 12 - Educational Content</div>
    
    {content}
    
    <div class="subscribe">
        <h2>📩 Subscribe to Educated Nepal</h2>
        <p>Get the latest Class 8, 9, 10, 11 &amp; 12 notes, past questions, and study guides directly to your smartphone.</p>
    </div>
</body>
</html>