Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>My Web Page</title>
- <link rel="stylesheet" href="styles.css">
- </head>
- <body>
- <header>
- <h1>Welcome to My Website</h1>
- </header>
- <nav>
- <ul>
- <li><a href="#">Home</a></li>
- <li><a href="#">About</a></li>
- <li><a href="#">Contact</a></li>
- </ul>
- </nav>
- <main>
- <section>
- <h2>About Us</h2>
- <p>We are a team of developers...</p>
- </section>
- <section>
- <h2>Contact Information</h2>
- <p>Email: [email protected]</p>
- <p>Phone: (123) 456-7890</p>
- </section>
- </main>
- <footer>
- <p>© 2023 My Website. All rights reserved.</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement