-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
137 lines (127 loc) · 5.32 KB
/
resume.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noman Bin Morshed - Resume</title>
<meta name="description" content="Resume of Noman Bin Morshed - Nuclear Engineering Student, Aspiring Computer Scientist, and Educator">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="resume-styles.css">
<link rel="stylesheet" href="print-styles.css" media="print">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Noman Bin Morshed",
"email": "[email protected]",
"jobTitle": "Nuclear Engineering Student",
"alumniOf": {
"@type": "CollegeOrUniversity",
"name": "University of Dhaka"
},
"knowsAbout": ["Nuclear Engineering", "Computer Science", "Education"]
}
</script>
</head>
<body>
<header>
<nav aria-label="Main navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
</header>
<main class="resume-container">
<section class="resume-header">
<h1>Noman Bin Morshed</h1>
<p>Nuclear Engineering Student | Aspiring Computer Scientist | Educator</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<a href="NomanBinMorshed_Resume.pdf" class="download-btn" download>
<i class="fas fa-download"></i> Download PDF
</a>
</section>
<section id="education" class="resume-section">
<h2>Education</h2>
<div class="resume-item">
<h3>University of Dhaka</h3>
<p>Bachelor of Science in Nuclear Engineering</p>
<p>Expected Graduation: 2025</p>
<p>GPA: [Your GPA]</p>
</div>
</section>
<section id="skills" class="resume-section">
<h2>Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Coding</h3>
<ul>
<li>Python <span class="skill-bar" style="width: 90%;"></span></li>
<li>C++ <span class="skill-bar" style="width: 80%;"></span></li>
<li>JavaScript <span class="skill-bar" style="width: 75%;"></span></li>
<li>R <span class="skill-bar" style="width: 70%;"></span></li>
</ul>
</div>
<!-- Other skill categories remain the same -->
</div>
</section>
<section id="languages" class="resume-section">
<h2>Languages</h2>
<ul class="language-list">
<li>English (Fluent)</li>
<li>Bengali (Native)</li>
<!-- Add more languages as needed -->
</ul>
</section>
<section class="resume-section">
<h2>Professional Memberships</h2>
<ul class="membership-list">
<li>American Physical Society (APS)</li>
<li>American Psychological Association (APA)</li>
<li>Association for Computing Machinery (ACM)</li>
<li>American Mathematical Society (AMS)</li>
<li>International Society for Data Science and Analytics (ISDSA)</li>
<li>Royal Society of Statisticians (RSS)</li>
<li>Society for Applied and Industrial Mathematics (SIAM)</li>
</ul>
</section>
<section id="experience" class="resume-section">
<h2>Experience</h2>
<div class="resume-item">
<h3>Student Instructor</h3>
<p>Local Prominent Academic Care</p>
<p>2023 - Present</p>
<ul>
<li>Instructed younger students in various subjects</li>
<li>Developed and implemented engaging lesson plans</li>
<li>Provided one-on-one tutoring and support</li>
</ul>
</div>
</section>
<section id="projects" class="resume-section">
<h2>Projects</h2>
<div class="resume-item project-item">
<h3>Project Name</h3>
<p>Brief description of the project and your role</p>
<a href="#" class="project-link">View Project <i class="fas fa-external-link-alt"></i></a>
</div>
<!-- Add more project items as needed -->
</section>
<section id="awards" class="resume-section">
<h2>Awards and Achievements</h2>
<ul class="awards-list">
<li>Dean's List, University of Dhaka (2022-2023)</li>
<!-- Add more awards as needed -->
</ul>
</section>
</main>
<footer>
<p>© 2024 Noman Bin Morshed. All rights reserved.</p>
</footer>
<script src="resume-script.js"></script>
</body>
</html>