<!-- wp:html --> <!DOCTYPE html> <html lang="hi"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Tiles</title> <style> body { font-family: Arial, sans-serif; background-color: #f3f3f3; margin: 0; padding: 0; } .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; } .tile { position: relative; width: 250px; height: 150px; background-color: #ffffff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); overflow: hidden; transition: all 0.3s ease; cursor: pointer; } .tile:hover { background-color: #e0f7fa; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); } .tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 1; opacity: 0.8; } .tile .content { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); color: #ffffff; text-align: center; padding: 10px; z-index: 2; } .tile a { color: #ffffff; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); text-decoration: none; font-weight: bold; } .tile a:hover { text-decoration: underline; text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); } </style> </head> <body> <div class="container"> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/education-300x171.webp" alt="शिक्षा संबंधी योजनाएँ"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/education-related-schemes"> शिक्षा संबंधी योजनाएँ </a> </div> </div> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/health-300x171.webp" alt="स्वास्थ्य और कल्याण योजनाएँ"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/health-and-welfare-schemes"> स्वास्थ्य और कल्याण योजनाएँ </a> </div> </div> <!-- Tile 3 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/women-empowerment-300x171.webp" alt="महिला सशक्तिकरण और कल्याण"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/women-empowerment-and-welfare"> महिला सशक्तिकरण और कल्याण </a> </div> </div> <!-- Tile 4 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/agriculture-and-rural-development-300x171.webp" alt="कृषि और ग्रामीण विकास योजनाएँ"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/agriculture-and-rural-development-schemes"> कृषि और ग्रामीण विकास योजनाएँ </a> </div> </div> <!-- Tile 5 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/social-security-300x171.webp" alt="सामाजिक सुरक्षा योजनाएँ"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/social-security-schemes"> सामाजिक सुरक्षा योजनाएँ </a> </div> </div> <!-- Tile 6 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/tourism-and-culture-300x171.webp" alt="पर्यटन और सांस्कृतिक संरक्षण"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/tourism-and-cultural-preservation"> पर्यटन और सांस्कृतिक संरक्षण </a> </div> </div> <!-- Tile 7 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/environment-300x171.webp" alt="पर्यावरण संरक्षण और आपदा प्रबंधन"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/environment-conservation-and-disaster-management"> पर्यावरण संरक्षण और आपदा प्रबंधन </a> </div> </div> <!-- Tile 8 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/urban-development-and-infrastructure.webp" alt="शहरी विकास और बुनियादी ढाँचा"> <div class="content"> <a href="https://gyanpragya.com/uttarakhand/urban-development-and-infrastructure"> शहरी विकास और बुनियादी ढाँचा </a> </div> </div> <!-- Tile 9 --> <div class="tile"> <img src="https://gyanpragya.com/wp-content/uploads/2024/11/special-schemes-and-initiatives-e1732846636286.webp" alt="विशेष योजनाएँ और पहलें"> <div class="content"> <a href="https://gyanpragya.com/uttarakhnd/special-schemes-and-initiatives/"> विशेष योजनाएँ और पहलें </a> </div> </div> </div> </body> </html> <!-- /wp:html -->