Input
Output
<!DOCTYPE html> <html> <head> <title>My First HTML Page</title> </head> <body> <h1>Welcome to My Website</h1> <a href="#services">Our Services</a> | <a href="#contact">Contact</a> <h2 id="services">Services</h2> <p>We offer web design, SEO, and development.</p> <h2 id="contact">Contact</h2> <p>Email us at info@example.com</p> </nav> </body> </html>