Untitled
unknown
plain_text
a year ago
1.9 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Name - CV</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } .header { text-align: center; margin-bottom: 20px; } .section { margin-bottom: 20px; } h1 { font-size: 24px; } h2 { font-size: 18px; } p { font-size: 16px; } </style> </head> <body> <div class="header"> <h1>Your Name</h1> <p>Email: your@email.com</p> <p>Phone: (123) 456-7890</p> <p>Address: 123 Main Street, City, Country</p> </div> <div class="section"> <h2>Summary</h2> <p>A brief summary of your professional background and career objectives.</p> </div> <div class="section"> <h2>Education</h2> <p><strong>University Name</strong></p> <p>Degree: Bachelor of Science in Computer Science</p> <p>Graduation Year: 20XX</p> </div> <div class="section"> <h2>Work Experience</h2> <p><strong>Software Developer</strong></p> <p>Company Name, City</p> <p>Start Date - End Date</p> <p>Description of your responsibilities and achievements in this role.</p> </div> <div class="section"> <h2>Skills</h2> <p>Programming languages: Java, Python, HTML/CSS</p> <p>Web development, database management, problem-solving</p> </div> <div class="section"> <h2>Languages</h2> <p>English (Fluent), Spanish (Intermediate)</p> </div> <div class="section"> <h2>Hobbies and Interests</h2> <p>Include your hobbies and interests here.</p> </div> </body> </html>