-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResume.html
163 lines (152 loc) · 5.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> www.xrajneeshmaurya.com </title>
<style>
/* Styles for the "Best Part" section */
.best-part {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
}
.best-part h2 {
color: #333;
font-size: 24px;
}
.best-part p {
font-size: 18px;
line-height: 1.5;
margin-top: 10px;
color: #555;
}
</style>
</head>
<body>
<header>
<h1> Rajneesh Maurya </h1>
<p> Web Developer | DevRel | Technical Writer | Open Source Advocate | Contributor | Community Member </p>
</header>
<section class="contact">
<h2>Contact</h2>
<p> Buisness: [email protected] </p>
<p> Personal: [email protected] </p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/yourname">linkedin.com/in/rajneeshmaurya</a></p>
<p>GitHub: <a href="https://github.com/yourusername">github.com/rajneesh-18</a></p>
</section>
<section class="education">
<h2>Education</h2>
<p><strong>AKTU</strong> - Bachelor's Degree in Information Technology </p>
<p> August 2026 Graduated</p>
</section>
<section class="experience">
<h2>Work Experience</h2>
<p><strong> OPEN SOURCE </strong> - Web Developer</p>
<p>Jan 2022 - Present</p>
<p><strong> Tech Suffers </strong> - DevRel</p>
<p>Sept 2023 - Present</p>
<p><strong>Twitter(X)</strong> - Technical Writer</p>
<p>Apr 2023- Present</p>
<p><strong> EddieHub </strong> - Open Source Advocate</p>
<p>Oct 2021 - Present</p>
<p><strong> daily.dev, Github, BioDrop</strong> - Contributor</p>
<p>Jan 2022 - Present</p>
<p><strong> 20 Communities all over from world </strong> - Community Member</p>
<p>April 2021 - Present</p>
<ul>
<li> Testing Project with using HTML, CSS and JavaScript </li>
<li> Collaboration with Global Friends in Weekends </li>
<li> Doing Communities work and Space Series with Best Topics </li>
</ul>
</section>
<section class="skills">
<h2>Skills</h2>
<div class="skill">
<span class="skill-name">HTML5</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 90%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">CSS3</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">TailwindCSS</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">JavaScript</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">TypeScript</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">Node.js</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">MongoDB</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<div class="skill">
<span class="skill-name">PYTHON</span>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%;"></div>
</div>
</div>
<!-- Add more skills and progress bars as needed -->
</section>
<section class="projects">
<h2>Projects</h2>
<div class="project">
<h3>Project 1</h3>
<p>BioDrop is an innovative solution for accurate low volume spectroscopy, </p>
<a href="https://github.com/EddieHubCommunity/BioDrop">View Project</a>
</div>
<div class="project">
<h3>Project 2</h3>
<p> If you are an active content creator, you probably have many pieces of content. </p>
<a href="https://github.com/FrancescoXX/contentbox">View Project</a>
</div>
<!-- Add more projects as needed -->
</section>
<footer>
<p style="text-align:center;"> Rajneesh Maurya ©</p>
</footer>
<script>
// Your existing JavaScript code
// JavaScript for scroll-to-top button
const scrollToTopButton = document.querySelector("#scrollToTop");
scrollToTopButton.addEventListener("click", () => {
window.scrollTo({
top: 0,
behavior: "smooth",
});
});
// Show or hide the scroll-to-top button based on scroll position
window.addEventListener("scroll", () => {
if (window.scrollY > 100) {
scrollToTopButton.style.display = "block";
} else {
scrollToTopButton.style.display = "none";
}
});
</script>
</body>
</html>