Skip to content

<!DOCTYPE html> <html> <head> <title>Gram Samachar</title> <style> body { font-family: Arial; text-align: center; } input { margin: 5px; padding: 8px; } button { padding: 10px; } #output { margin-top: 20px; } </style> </head> <body> <h2>🌾 Gram Samachar Generator</h2> <input type="text" id="village" placeholder="Village Name"><br> <input type="text" id="district" placeholder="District"><br> <input type="text" id="state" placeholder="State"><br> <button onclick="generateNews()">Generate News</button> <div id="output"></div> <script> function generateNews() { let village = document.getElementById("village").value; let news = <h3>📢 ${village} Weekly News</h3> <p>1. Gaon me safai abhiyan chal raha hai.</p> <p>2. Kisan log fasal ki taiyari kar rahe hain.</p> <p>3. Mausam normal rahega.</p> <p>4. Sarkari yojana ka labh mil raha hai.</p> <p>5. Panchayat meeting jaldi hogi.</p> ; document.getElementById("output").innerHTML = news; } </script> </body> </html> #4

@dipakyele2005-star

Description

@dipakyele2005-star
No description provided.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions