<html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <title>Tư vấn dịch vụ</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 10px 0; text-align: center; } section { padding: 20px; margin: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } h1 { margin-top: 0; } p { line-height: 1.6; } footer { background-color: #333; color: #fff; padding: 10px 0; text-align: center; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Tư vấn dịch vụ</h1> </header> <section> <h2>Giới thiệu</h2> <p>Xin chào! Chúng tôi là đội ngũ tư vấn dịch vụ của bạn.</p> <p>Chúng tôi có thể giúp bạn với các dịch vụ từ A đến Z. Vui lòng liên hệ để biết thêm chi tiết.</p> </section> <footer> <p>Bản quyền © 2024 Tư vấn dịch vụ. All rights reserved.</p> </footer> </body> </html>