Resume
Resume
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Software Developer Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
line-height: 1.6;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
text-align: center;
}
.contact-info {
margin-bottom: 20px;
font-size: 16px;
text-align: center;
}
.section h2 {
color: #32CD32;
margin-bottom: 10px;
font-size: 24px;
}
.section {
margin-bottom: 30px;
}
.section hr {
border: none;
border-top: 2px solid #32CD32;
margin: 10px 0;
}
.experience, .education {
margin-bottom: 20px;
}
.experience p, .education p {
margin: 5px 0;
}
.skills {
margin-bottom: 20px;
}
.skills span {
display: inline-block;
background-color: #32CD32;
color: #fff;
padding: 5px 10px;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Your Name</h1>
<div class="contact-info">
<p>Email: [email protected] | Phone: (123) 456-7890 | Location: Your City,
Country</p>
</div>
<div class="section">
<h2>About Me</h2>
<hr>
<p>I am a passionate software developer with X years of experience in developing
web and mobile applications. Proficient in multiple programming languages and
frameworks, I am dedicated to building efficient, scalable, and user-friendly
solutions.</p>
</div>
<div class="section">
<h2>Experience</h2>
<hr>
<div class="experience">
<p><strong>Software Developer</strong><br> Company Name - Location<br> Month
Year - Present<br> Developed and maintained web applications using technologies
like React, Node.js, and MongoDB. Collaborated with cross-functional teams to
deliver high-quality software products. Implemented best practices in coding,
testing, and deployment.</p>
</div>
<div class="experience">
<p><strong>Junior Developer</strong><br> Company Name - Location<br> Month Year
- Month Year<br> Assisted in the development of mobile applications using Flutter
and Dart. Participated in code reviews and contributed to improving code quality.
Worked closely with senior developers to enhance my coding skills and
knowledge.</p>
</div>
</div>
<div class="section">
<h2>Education</h2>
<hr>
<div class="education">
<p><strong>Bachelor of Technology in Computer Science</strong><br> Institution
Name - Location<br> Year - Year<br> Graduated with distinction, with a focus on
software development and algorithms.</p>
</div>
</div>
<div class="section">
<h2>Skills</h2>
<hr>
<div class="skills">
<span>JavaScript</span>
<span>React.js</span>
<span>Node.js</span>
<span>Python</span>
<span>HTML/CSS</span>
<span>SQL</span>
<span>Git</span>
<span>RESTful APIs</span>
</div>
</div>
</body>
</html>