Untitled
unknown
plain_text
2 years ago
2.0 kB
3
Indexable
<!DOCTYPE html> <html> <head> <title>Business Portfolio</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } h1 { margin: 0; } nav { background-color: #f4f4f4; padding: 10px; } nav ul { list-style-type: none; margin: 0; padding: 0; text-align: center; } nav ul li { display: inline-block; margin-right: 20px; } nav ul li a { color: #333; text-decoration: none; } section { padding: 20px; text-align: center; } footer { background-color: #333; color: #fff; padding: 20px; text-align: center; } </style> </head> <body> <header> <h1>Business Portfolio</h1> </header> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#services">Services</a></li> <li><a href="#projects">Projects</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> <section id="about"> <h2>About</h2> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non elit eget metus posuere feugiat. Nulla facilisi. Curabitur et risus vitae massa porta posuere ac eu augue.</p> </section> <section id="services"> <h2>Services</h2> <ul> <li>Service 1</li> <li>Service 2</li> <li>Service 3</li> </ul> </section> <section id="projects"> <h2>Projects</h2> <ul> <li>Project 1</li> <li>Project 2</li> <li>Project 3</li> </ul> </section> <section id="contact"> <h2>Contact</h2> <p>Email: info@example.com</p> <p>Phone: 123-456-7890</p> </section> <footer> <p>© 2023 Business Portfolio. All rights reserved.</p> </footer> </body> </html>
Editor is loading...