Untitled
unknown
plain_text
2 years ago
947 B
2
Indexable
<!DOCTYPE html> <html> <head> <title>My Website</title> </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> <h2>About Me</h2> <p>Hi, my name is [Your Name] and I'm a [Your Profession/Interest]. I started this website to share my thoughts and ideas with the world.</p> <h2>Contact Me</h2> <form> <label for="name">Name:</label> <input type="text" id="name" name="name" required><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" required><br><br> <label for="message">Message:</label><br> <textarea id="message" name="message" rows="5" cols="30" required></textarea><br><br> <input type="submit" value="Submit"> </form> </main> <footer> <p>© 2023 My Website. All rights reserved.</p> </footer> </body> </html>
Editor is loading...