-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
184 lines (170 loc) · 7.54 KB
/
Copy pathindex.html
File metadata and controls
184 lines (170 loc) · 7.54 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - Moham Sinhard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<h1>Moham Sinhard</h1>
<p class="tagline">Software Developer | Full Stack Engineer</p>
<div class="contact-info">
<a href="mailto:your-email@example.com">Email</a> |
<a href="https://github.com/sinhard">GitHub</a> |
<a href="https://linkedin.com/in/moham-sinhard">LinkedIn</a>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Professional Summary -->
<section class="section">
<h2>Professional Summary</h2>
<p>
Passionate full-stack developer with expertise in building scalable web applications.
Strong problem-solving skills and experience with modern technologies and frameworks.
Committed to writing clean, maintainable code and delivering exceptional user experiences.
</p>
</section>
<!-- Skills -->
<section class="section">
<h2>Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Languages</h3>
<ul>
<li>JavaScript / TypeScript</li>
<li>Python</li>
<li>HTML / CSS</li>
<li>SQL</li>
</ul>
</div>
<div class="skill-category">
<h3>Frontend</h3>
<ul>
<li>React</li>
<li>Vue.js</li>
<li>Tailwind CSS</li>
<li>Responsive Design</li>
</ul>
</div>
<div class="skill-category">
<h3>Backend</h3>
<ul>
<li>Node.js / Express</li>
<li>PostgreSQL</li>
<li>RESTful APIs</li>
<li>Authentication</li>
</ul>
</div>
<div class="skill-category">
<h3>Tools & Others</h3>
<ul>
<li>Git / GitHub</li>
<li>Docker</li>
<li>VS Code</li>
<li>Agile</li>
</ul>
</div>
</div>
</section>
<!-- Experience -->
<section class="section">
<h2>Experience</h2>
<div class="job">
<div class="job-header">
<h3>Senior Developer</h3>
<span class="job-date">2023 - Present</span>
</div>
<p class="job-company">Tech Company Inc.</p>
<ul>
<li>Developed and maintained full-stack web applications using React and Node.js</li>
<li>Led code reviews and mentored junior developers</li>
<li>Improved application performance by 40% through optimization techniques</li>
<li>Collaborated with cross-functional teams to deliver projects on schedule</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Full Stack Developer</h3>
<span class="job-date">2021 - 2023</span>
</div>
<p class="job-company">Digital Solutions Ltd.</p>
<ul>
<li>Built responsive web applications with React and TypeScript</li>
<li>Designed and implemented RESTful APIs using Express.js</li>
<li>Managed PostgreSQL databases and performed database optimization</li>
<li>Implemented CI/CD pipelines using GitHub Actions</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Junior Developer</h3>
<span class="job-date">2020 - 2021</span>
</div>
<p class="job-company">StartUp Co.</p>
<ul>
<li>Developed frontend components with React and CSS</li>
<li>Fixed bugs and maintained codebase quality</li>
<li>Participated in daily standups and sprint planning</li>
<li>Learned best practices in modern web development</li>
</ul>
</div>
</section>
<!-- Projects -->
<section class="section">
<h2>Projects</h2>
<div class="project">
<h3><a href="#">E-Commerce Platform</a></h3>
<p class="project-tech">React, Node.js, PostgreSQL, Stripe</p>
<p>
Built a full-featured e-commerce platform with product catalog, shopping cart,
and payment processing. Implemented user authentication and order management system.
</p>
</div>
<div class="project">
<h3><a href="#">Task Management App</a></h3>
<p class="project-tech">Vue.js, Firebase, Tailwind CSS</p>
<p>
Created a collaborative task management application with real-time updates,
team collaboration features, and progress tracking.
</p>
</div>
<div class="project">
<h3><a href="#">Data Analytics Dashboard</a></h3>
<p class="project-tech">React, D3.js, Express, MongoDB</p>
<p>
Developed an interactive analytics dashboard for real-time data visualization
and reporting with customizable widgets.
</p>
</div>
</section>
<!-- Education -->
<section class="section">
<h2>Education</h2>
<div class="education">
<h3>Bachelor of Science in Computer Science</h3>
<p class="job-company">University Name</p>
<p class="job-date">Graduated: 2020</p>
</div>
</section>
<!-- Certifications -->
<section class="section">
<h2>Certifications</h2>
<ul>
<li>AWS Certified Cloud Practitioner</li>
<li>Full Stack Web Development Certification</li>
<li>JavaScript Advanced Concepts</li>
</ul>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<p>© 2024 Moham Sinhard. All rights reserved.</p>
</footer>
</div>
</body>
</html>