0% found this document useful (0 votes)
7 views1 page

Create

Uploaded by

truong16102006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Create

Uploaded by

truong16102006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport"


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>

You might also like