<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="cv-container">
<header>
<h1>Codezillaye</h1>
<p>Software Engineer</p>
<p>Email: Codezillaye.com | Phone: (123) 456-7890</p>
<p>Address: 1234 Street Name, City, Country</p>
</header>
<section class="profile">
<h2>Profile</h2>
<p>Highly skilled software engineer with 5+ years of experience in developing scalable web applications. Proficient in JavaScript, HTML, CSS, and various frameworks. Seeking to leverage my technical expertise and experience to contribute to the success of your team.</p>
</section>
<section class="experience">
<h2>Experience</h2>
<div class="job">
<h3>Senior Software Engineer</h3>
<p>ABC Company | Jan 2020 - Present</p>
<ul>
<li>Developed and maintained web applications using React and Node.js.</li>
<li>Led a team of 5 developers in agile methodology to deliver projects on time.</li>
<li>Improved application performance by 30% through code optimization and refactoring.</li>
</ul>
</div>
<div class="job">
<h3>Software Engineer</h3>
<p>XYZ Company | Jun 2024 - Dec 2030</p>
<ul>
<li>Worked on front-end development using JavaScript, HTML, and CSS.</li>
<li>Collaborated with designers to create user-friendly web interfaces.</li>
<li>Implemented RESTful APIs and integrated third-party services.</li>
</ul>
</div>
</section>
<section class="education">
<h2>Education</h2>
<div class="degree">
<h3>Bachelor of Science in Computer Science</h3>
<p>University of Technology | Sep 2012 - Jun 2016</p>
</div>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
<li>HTML/CSS</li>
<li>Git</li>
<li>Agile Methodology</li>
</ul>
</section>
</div>
</body>
</html>