-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 1.97 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Interactive Resume</title>
</head>
<body>
<header>
<h1> Amar Kumar </h1>
<p>Web Developer</p>
</header>
<section id="skills">
<h2>Skills</h2>
<button onclick="toggleSection('skillsDetails')">Toggle Skills Details</button>
<div id="skillsDetails">
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
<!-- Add more skills as needed -->
</ul>
</div>
</section>
<section id="experience">
<h2>Experience</h2>
<button onclick="toggleSection('experienceDetails')">Toggle Experience Details</button>
<div id="experienceDetails">
<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 -->
</div>
</section>
<section id="education">
<h2>Education</h2>
<button onclick="toggleSection('educationDetails')">Toggle Education Details</button>
<div id="educationDetails">
<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 -->
</div>
</section>
<script src="script.js"></script>
</body>
</html>