-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResume.html
More file actions
99 lines (99 loc) · 3.36 KB
/
Resume.html
File metadata and controls
99 lines (99 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divyanshu Kushwaha's Resume</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header, .main-content, footer {
background: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img.profile-pic {
display: block;
margin: 0 auto;
border-radius: 50%;
max-width: 250px;
height: auto;
}
h1, h2, h3 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 10px;
}
footer {
text-align: center;
}
footer a {
text-decoration: none;
color: #333;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Divyanshu Kushwaha</h1>
<img src="./assets/profile_img.jpg" alt="Divyanshu Kushwaha" class="profile-pic" />
</header>
<div class="main-content">
<section>
<h2>Summary</h2>
<p>I am an enthusiastic learner, currently pursuing my Integrated Master's degree in Computer Science. My goal is to become a highly skilled professional software engineer, capable of bringing continuous innovation and development to the IT field. My current interests lie in Web Development and Machine Learning, and I am particularly keen on working with generative AI.</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Integrated Masters in Computer Science (2022 - 2026)</li>
<li>Intermediate from Little Flower House - CBSE (91%) - 2021</li>
<li>High School from The Aryan International School - CBSE (89%) - 2019</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Proficient in C</li>
<li>Java OOPs fundamentals</li>
<li>Python</li>
<li>Proficient in using Linux system</li>
<li>HTML, CSS, JS, jQuery, Bootstrap</li>
<li>NoSQL, MongoDB</li>
</ul>
</section>
<section>
<h2>My Work</h2>
<h3>Projects I have worked on...</h3>
<p>Uploading soon</p>
</section>
</div>
<footer>
<h3><a href="AboutMe.html" target="_blank" rel="noopener noreferrer">More About Me</a></h3>
<h3><a href="Contact.html" target="_blank" rel="noopener noreferrer">Contact</a></h3>
</footer>
</div>
</body>
</html>