content="width=device-width, initial-scale=1.0"> <title>About Us</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; color: #333; margin: 0; padding: 0; } header { background-color: #4CAF50; color: white; padding: 20px; text-align: center; } h1 { color: #4CAF50; } main { padding: 20px; max-width: 800px; margin: auto; } section { margin-bottom: 30px; } ul { list- style-type: square; color: #555; } button { padding: 10px 20px; font-size: 16px; cursor: pointer; background-color: #4CAF50; color: white; border: none; border-radius: 5px; } button:hover { background-color: #45a049; } </style> </head> <body> <header> <h1>About Us</h1> <p>Welcome to our organization! We are dedicated to making a difference.</p> </header> <main> <section> <h2>Our Mission</h2> <p>Our mission is to provide top-notch services and make a positive impact on society. We strive to meet the needs of our community through continuous improvement and innovation.</p> </section> <section> <h2>Core Values</h2> <ul> <li>Integrity and transparency in all our actions.</li> <li>Commitment to quality and excellence.</li> <li>Dedication to teamwork and collaboration.</li> <li>Respect for individuals and diversity.</li> </ul> </section> <section> <h2>Contact Us</h2> <p>If you would like to get in touch, click the button below!</p> <button onclick="displayMessage()">Contact Us</button> </section> </main> <script> function displayMessage() { alert("Thank you for reaching out to us! We will get back to you soon."); } </script> </body> </html>