-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (73 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Static Interactive Resume</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="resume-container">
<!--left section-->
<div class="left-section">
<img src="profile-.jpeg" alt="Profile Picture" class="profile-picture">
<section id="objective">
<h3 style="color: azure;">Career objective</h3>
<p style="text-align: justify; hyphens: auto;">To secure an employment opportunity with a progressive organisation, where i can utilize my professional skills and knowledge to the maximum add value in the growth of the organisation</p>
</section>
<section id="certification">
<h3 style="color: azure;">Certifications</h3>
<p><b>Artificial Intelligence, Web 3.0 & Metaverse</b> From Governer House Karachi (Ongoing)</p>
</section>
</div>
<!-- Right section-->
<div class="right section">
<h1>Static Interactive Resume</h1>
<!-- Personal Information -->
<section id="personal-info">
<h3>Personal Information</h3>
<p><b>Name:</b> Tehreem Abdullah </p>
<p><b>Phone:</b> 03062177192 </p>
<p><b>Email:</b> <a href="mailto:[email protected]">[email protected]</a></p>
</section>
<!-- Education Section-->
<section id="education">
<h3>Education</h3>
<p><b>Intermidiate:</b> from Govt Degree College Lines Area Karachi</p>
<p><b>Matric:</b> from Crescent Public School karachi</p>
</section>
<!-- Skills Section-->
<section id="skills">
<h3>Skills</h3>
<ul>
<li>Ms Office</li>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>communication skills</li>
</ul>
</section>
<!--Work Experience Section -->
<section id="work experience">
<h3>Work Experience</h3>
<p> Seeking an opportunity as a fresh candidate to start my professional career.</p>
</section>
<!-- Button to toggle Skills Section -->
<button id="toggle-skills"><b>Hide/Show Skills</b></button>
</div>
</div>
<script>
const toggleSkillsButton = document.getElementById('toggle-skills');
const skillsSection = document.getElementById('skills');
toggleSkillsButton.addEventListener('click', () => {
if (skillsSection.style.display === 'none' || skillsSection.style.display === '') {
skillsSection.style.display = 'block';
toggleSkillsButton.textContent = 'Hide Skills';
} else {
skillsSection.style.display = 'none';
toggleSkillsButton.textContent = 'Show Skills';
}
});
</script>
</body>
</html>