Tool Request: 900844250 - create_file
{"file_name":"index.html","content":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>Modern Plumbing Services</title>\n <style>\n body {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n line-height: 1.6;\n }\n .header {\n background: #007BFF;\n color: white;\n padding: 1em 0;\n text-align: center;\n }\n .nav {\n background: #0056b3;\n padding: 1em 0;\n }\n .nav a {\n color: white;\n margin: 0 20px;\n text-decoration: none;\n }\n .hero {\n text-align: center;\n padding: 50px 20px;\n background: #f0f8ff;\n }\n .services {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n padding: 20px;\n }\n .service-card {\n background: white;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n }\n .service-card:hover {\n transform: translateY(-3px);\n box-shadow: 0 5px 10px rgba(0,0,0,0.15);\n }\n .contact {\n background: #e2f0ff;\n padding: 30px 20px;\n text-align: center;\n }\n .footer {\n background: #212529;\n color: white;\n text-align: center;\n padding: 10px 0;\n margin-top: 20px;\n }\n </style>\n</head>\n<body>\n <header class=\"header\">\n <h1>Modern Plumbing Services</h1>\n </header>\n <nav class=\"nav\">\n <a href=\"#about\">About</a>\n <a href=\"#services\">Services</a>\n <a href=\"#contact\">Contact</a>\n </nav>\n <section class=\"hero\">\n <h2>Reliable Plumbing Solutions</h2>\n <p>24/7 Emergency Services Available</p>\n </section>\n <section id=\"services\" class=\"services\">\n <div class=\"service-card\">\n <h3>Leak Detection & Repair</h3>\n <p>Professional detection and repair of all water leaks.</p>\n </div>\n <div class=\"service-card\">\n <h3>Plumbing Installations</h3>\n <p>Installation of new fixtures, pipes, and appliances.</p>\n </div>\n <div class=\"service-card\">\n <h3>Drain Cleaning</h3>\n <p>Expert drain cleaning and clog removal services.</p>\n </div>\n <div class=\"service-card\">\n <h3>Toilet Repairs</h3>\n <p>Fast and effective toilet repairs and replacements.</p>\n </div>\n </section>\n <section class=\"contact\" id=\"contact\">\n <h3>Contact Us</h3>\n <p>Phone: (555) 123-4567</p>\n <p>Email: info@modernplumbing.com</p>\n <p>Address: 123 Plumbing Street, Cityville</p>\n </section>\n <footer class=\"footer\">\n <p>© 2023 Modern Plumbing Services</p>\n </footer>\n</body>\n</html>"}