Untitled
unknown
plain_text
5 months ago
1.7 kB
2
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simon L - Student</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f4f4f4; } header { text-align: center; padding: 10px; background-color: #007BFF; color: white; } h1 { margin: 0; } section { margin: 20px 0; padding: 20px; background-color: white; border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } footer { text-align: center; margin-top: 20px; color: #555; } .project, .experience { margin-bottom: 15px; } </style> </head> <body> <header> <h1>Simon L</h1> <h2>Student</h2> </header> <section> <h3>Projects</h3> <div class="project"> <h4>Project Title 1</h4> <p>Description of the project goes here.</p> </div> <div class="project"> <h4>Project Title 2</h4> <p>Description of the project goes here.</p> </div> </section> <section> <h3>Experience</h3> <div class="experience"> <h4>Job Title 1</h4> <p>Description of the experience goes here.</p> </div> <div class="experience"> <h4>Job Title 2</h4> <p>Description of the experience goes here.</p> </div> </section> <footer> <p>Contact: <a href="mailto:your-email@example.com">your-email@example.com</a></p> </footer> </body> </html>
Editor is loading...
Leave a Comment