-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResume.html
More file actions
121 lines (105 loc) · 3.06 KB
/
Resume.html
File metadata and controls
121 lines (105 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #070707;
color: white;
padding: 20px;
text-align: center;
}
section {
max-width: 800px;
margin: 20px auto;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #ffffff;
}
h2 {
border-bottom: 2px solid #ccc;
padding-bottom: 5px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 5px;
}
.skills {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.skill {
background-color: #ddd;
padding: 5px 10px;
border-radius: 5px;
margin: 5px 0;
}
.experience, .education {
margin-top: 20px;
}
.experience h3, .education h3 {
color: #555;
}
.project {
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
margin-bottom: 10px;
}
</style>
<title>Interactive Resume</title>
</head>
<body>
<header>
<h1>Amar Kumar</h1>
<p>Web Developer</p>
</header>
<section id="skills">
<h2>Skills</h2>
<div class="skills">
<div class="skill">HTML</div>
<div class="skill">CSS</div>
<div class="skill">JavaScript</div>
<div class="skill">React</div>
<div class="skill">Node.js</div>
<!-- Add more skills as needed -->
</div>
</section>
<section id="experience" class="experience">
<h2>Experience</h2>
<div class="project">
<h3>Web Developer</h3>
<p>Company Upwork - January 2023 to Present</p>
<ul>
<li>Developed and maintained responsive web applications.</li>
<li>Collaborated with cross-functional teams to achieve project goals.</li>
<!-- Add more details as needed -->
</ul>
</div>
<!-- Add more experience entries as needed -->
</section>
<section id="education" class="education">
<h2>Education</h2>
<div class="project">
<h3>Bachelor of Science in Computer Science</h3>
<p>University Gossner Collage Ranchi - Graduated May 2019</p>
</div>
<!-- Add more education entries as needed -->
</section>
</body>
</html>