Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Entrepreneurship Hub</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; text-align: center; padding: 1em; } nav { display: flex; justify-content: center; background-color: #444; padding: 0.5em; } nav a { color: #fff; text-decoration: none; padding: 1em; } section { padding: 1em; } footer { background-color: #333; color: #fff; text-align: center; padding: 1em; } </style> </head> <body> <header> <h1>Entrepreneurship Hub</h1> </header> <nav> <a href="#entrepreneurship">Entrepreneurship</a> <a href="#employment">Employment</a> <a href="#skill-development">Skill Development</a> </nav> <section id="entrepreneurship"> <h2>Entrepreneurship</h2> <p>Welcome to our Entrepreneurship section. Explore resources and stories to inspire and guide your entrepreneurial journey.</p> </section> <section id="employment"> <h2>Employment</h2> <p>Discover opportunities and insights related to employment. Stay informed about job trends and career development.</p> </section> <section id="skill-development"> <h2>Skill Development</h2> <p>Enhance your skills with our curated resources. Find courses, workshops, and tips to boost your professional capabilities.</p> </section> <footer> <p>© 2024 Entrepreneurship Hub. All rights reserved.</p> </footer> </body> </html>
Leave a Comment