-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (166 loc) · 7.96 KB
/
index.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
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio </title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="">
<ul>
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="header-text">
<p>Software Engineer</p>
<h1>Hi, I'm <span> Mohit Kumar</span> </h1>
</div>
</div>
</div>
<!---- -----------------------about---------------------- -->
<div id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="assets/photo2.png">
</div>
<div class="about-col-2">
<h1 class="sub-title">About Me</h1>
<p>Enthusiastic backend developer with a strong foundation in server-side programming, database
management, and API development, gained through academic projects and self-learning. Eager to
apply my skills to innovative projects and grow with a forward-thinking team while staying updated
with industry trends.</p>
<div class="tab-title">
<p class="tab-links active-links" onclick="opentab('skills')"> Skills</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
</div>
<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>Technical Skills </span><br>C, C++, HTML ,CSS , Java(Basics),SQL</li>
<li><span>Language </span><br>English, Hindi</li>
<li><span>Tools </span><br>Selenium, Git ,Git Bash, VS Code, <br>Jupyter Notebook, Power BI, Tableau</li>
<li><span>Soft skills </span><br>Travelling,Leadership, Problem Solving</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>KLE Technological University’s Dr. M. S. Sheshgiri Campus Belagavi </span><br>Bachelor of Engineering (2021-2025)<br>CGPA - 8.2</li>
<li><span>Kasidih High School</span><br>CBSE XII<br>Percentage Scored:75.6%</li>
<li><span>Kasidih High School</span><br>CBSE X <br>Percentage Scored:72%</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!---------------------------portfolio------------------>
<div id="portfolio">
<div class="container">
<h1 class="sub-title">Projects</h1>
<div class="work-list">
<div class="work">
<img src="assets/img5.jpg">
<div class="layer">
<h3>Kids Immunization Reminder System </h3>
<P>A website that helps parents to
manage their child's vaccination schedule with comprehensive vaccine information and
email notifications to minimize missed doses and promote children's health.</P>
<a href="#"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="work">
<img src="assets/img2.jpeg">
<div class="layer">
<h3>Student Performance Analysis </h3>
<P> This project explores the application of data analytics
and predictive modeling to enhance the understanding and forecasting of student
academic performance.</P>
<a href="#"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="work">
<img src="assets/img3.jpg">
<div class="layer">
<h3>Dengue Data Analysis </h3>
<P> Conducted analysis of Dengue dataset from San Juan and
Iquitos, leveraging climatological factors through exploratory data analysis (EDA) and
data preprocessing techniques</P>
<a href="#"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
<a href="#" class="btn">See More</a>
</div>
</div>
<!-----------------------------------contact---------------------------->
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fas fa-paper-plane"></i>contact@example</p>
<p><i class="fas fa-phone-square"></i>0123456789</p>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
<a href="assets/CV.pdf" download class="btn btn2">Download CV</a>
</div>
<div class="contact-right">
<form name='submit-to-google-sheet'>
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="Email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<button type="submit" class="btn btn2">Submit</button>
</form>
<span id="msg"></span>
</div>
</div>
</div>
<div class="copyright">
<p>copyright©Mohit Kumar</p>
</div>
</div>
<!---------------------------scripting------------------------------------------------->
<script>
var tablinks =document.getElementsByClassName("tab-links");
var tabcontents =document.getElementsByClassName("tab-contents");
function opentab(tabname){
for(tablink of tablinks){
tablink.classList.remove("active-links");
}
for(tabcontent of tabcontents){
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-links")
document.getElementById(tabname).classList.add("active-tab")
}
</script>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbxh39y8OedtVVvj1efhGgfAmSbzr2P7qq9ImfIihhmzAStVPusBIKOvccoXHm9tRX88Xw/exec'
const form = document.forms['submit-to-google-sheet']
const msg= document.getElementById("msg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => {
msg.innerHTML="Message sent succesfully"
setTimeout(function(){
msg.innerHTML=""
},3000)
form.reset()
}
)
.catch(error => console.error('Error!', error.message))
})
</script>
</body>
</html>