Untitled
unknown
plain_text
a year ago
736 B
8
Indexable
Never
<!DOCTYPE html> <html> <head> <title>My Website</title> </head> <body> <div id="header"> <h1>Welcome to My Website</h1> <nav> <ul> <li><a href="#">Home</li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </div> <div class="main"> <h2>About Me</h2> <p>Hi, my name is John Doe and I'm a frontend developer.</p> </div> <div class="main"> <h2>My Skills</h2> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> </div> <div id="footer"> © 2023 My Website. All rights reserved. </div> </body> </html>