Adds kemrans resume directory on files
This commit is contained in:
parent
22cd76cc3e
commit
6867fe3a25
2 changed files with 123 additions and 0 deletions
74
student-resumes/kemran-resume/index.html
Normal file
74
student-resumes/kemran-resume/index.html
Normal file
|
|
@ -0,0 +1,74 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Kemran Aliew's Resume</title>
|
||||||
|
<link rel="stylesheet" href="stylesforresume.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1>Kemran Aliew</h1>
|
||||||
|
<p>Web Developer | Software Engineer</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Profile</h2>
|
||||||
|
<p>I am a passionate and dedicated web developer with a love for creating intuitive and dynamic user experiences. With a background in computer science, I specialize in both front-end and back-end technologies.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Experience</h2>
|
||||||
|
<div class="experience">
|
||||||
|
<div class="job-title">Senior Web Developer</div>
|
||||||
|
<div class="time-period">March 2022 - Present</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul>
|
||||||
|
<li>Led the development of web applications using React and Node.js for a leading e-commerce platform.</li>
|
||||||
|
<li>Improved application performance by optimizing code and reducing load times by 30%.</li>
|
||||||
|
<li>Collaborated with designers and project managers to deliver high-quality products on schedule.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="experience">
|
||||||
|
<div class="job-title">Junior Web Developer</div>
|
||||||
|
<div class="time-period">January 2020 - February 2022</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul>
|
||||||
|
<li>Developed and maintained code for client websites primarily using HTML, CSS, and JavaScript.</li>
|
||||||
|
<li>Assisted in the redesign of user interfaces for better usability and aesthetics.</li>
|
||||||
|
<li>Participated in regular team meetings and provided input on project timelines and challenges.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Education</h2>
|
||||||
|
<div class="education">
|
||||||
|
<div class="job-title">Bachelor of Science in Computer Science</div>
|
||||||
|
<div class="time-period">2018 - 2022</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul>
|
||||||
|
<li>Graduated from University of Technology with a major in Computer Science.</li>
|
||||||
|
<li>Specialized in software development, database management, and web technologies.</li>
|
||||||
|
<li>Completed a capstone project on "Optimizing Web Performance and Accessibility".</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
<h2>Skills</h2>
|
||||||
|
<ul>
|
||||||
|
<li>HTML, CSS, JavaScript, React, Node.js</li>
|
||||||
|
<li>Version Control/Git</li>
|
||||||
|
<li>Responsive Web Design</li>
|
||||||
|
<li>Testing and Debugging</li>
|
||||||
|
<li>Project Management</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
49
student-resumes/kemran-resume/stylesforresume.css
Normal file
49
student-resumes/kemran-resume/stylesforresume.css
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
margin: 40px;
|
||||||
|
color: #333;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: auto;
|
||||||
|
background: white;
|
||||||
|
padding: 20px;
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.header {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 50px;
|
||||||
|
}
|
||||||
|
.header h1 {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
.header p {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.section {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.section h2 {
|
||||||
|
font-size: 20px;
|
||||||
|
color: #333;
|
||||||
|
border-bottom: 2px solid #e2e2e2;
|
||||||
|
padding-bottom: 3px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.experience, .education {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
.job-title {
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.time-period {
|
||||||
|
font-style: italic;
|
||||||
|
color: #666;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.details {
|
||||||
|
margin-top: 5px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue