Untitled
user_5969844
plain_text
2 years ago
2.0 kB
2
Indexable
Never
<!DOCTYPE html> <html> <head> <title>skyzex</title> <style> /* CSS styles for the website */ body { font-family: Arial, sans-serif; background-color: #f8f8f8; margin: 0; padding: 0; } /* Header styles */ header { background-color: #000; color: #fff; padding: 20px; } /* Navigation styles */ nav { background-color: #333; padding: 10px; } nav ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; } nav li { float: left; } nav li a { display: block; color: #fff; text-align: center; padding: 14px 16px; text-decoration: none; } nav li a:hover { background-color: #111; } /* Main content styles */ .container { max-width: 960px; margin: 20px auto; padding: 20px; } h1 { font-size: 36px; } p { font-size: 18px; line-height: 1.6; } </style> </head> <body> <header> <h1>Welcome to skyzex</h1> </header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact Us</a></li> </ul> </nav> <div class="container"> <h2>About Us</h2> <p>skyzex is a leading technology company specializing in web development and design. We provide innovative solutions to clients across various industries, helping them achieve their online goals.</p> <h2>Services</h2> <p>We offer a wide range of services, including web development, web design, e-commerce solutions, mobile app development, and digital marketing. Our team of experts is dedicated to delivering high-quality solutions tailored to our clients' needs.</p> <h2>Contact Us</h2> <p>If you have any questions or inquiries, please feel free to contact us using the contact form on our website or by email or phone. We look forward to hearing from you!</p> </div> </body> </html>