Untitled
unknown
plain_text
2 years ago
1.5 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <title>Your Name - Personal Website</title> </head> <body> <header> <div class="container"> <h1>Your Name</h1> <p>Web Developer & Designer</p> </div> </header> <section id="about"> <div class="container"> <h2>About Me</h2> <p>Welcome to my personal website. I am passionate about creating beautiful and functional websites.</p> </div> </section> <section id="skills"> <div class="container"> <h2>Skills</h2> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <!-- Add more skills as needed --> </ul> </div> </section> <section id="projects"> <div class="container"> <h2>Projects</h2> <div class="project"> <h3>Project 1</h3> <p>Description of Project 1.</p> </div> <div class="project"> <h3>Project 2</h3> <p>Description of Project 2.</p> </div> <!-- Add more projects as needed --> </div> </section> <footer> <div class="container"> <p>© 2023 Your Name. All rights reserved.</p> </div> </footer> </body> </html>
Editor is loading...
Leave a Comment