<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; box-sizing: border-box; } header { background-color: #333; color: #fff; text-align: center; padding: 20px; } .about-us, .services, .contact { padding: 40px; text-align: center; } .about-us { background-color: #f4f4f4; } .services { background-color: #e0e0e0; } .contact { background-color: #d4d4d4; } </style> <title>Company Profile</title> </head> <body> <header> <h1>Company Name</h1> <p>Building a Better Future Together</p> </header> <section class="about-us"> <h2>About Us</h2> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eget turpis sed elit bibendum gravida.</p> </section> <section class="services"> <h2>Our Services</h2> <ul> <li>Service 1</li> <li>Service 2</li> <li>Service 3</li> </ul> </section> <section class="contact"> <h2>Contact Us</h2> <p>Email: info@company.com</p> <p>Phone: +123 456 7890</p> </section> <script> // Add any interactive features or dynamic content using JavaScript if needed // For simplicity, this example does not include specific JavaScript functionality </script> </body> </html> Baca juga tentang sourcecode Web Banner