-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
126 lines (108 loc) · 3.88 KB
/
about.html
File metadata and controls
126 lines (108 loc) · 3.88 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
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Hariharan S</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<style>
/* Ensure footer sticks to bottom */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
}
footer {
margin-top: auto;
}
/* About Page Styles */
#about {
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#about h2 {
color:brown;
}
#about .section-content h3 {
padding: 15px;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease;
position: relative;
font-size: 1.2em;
}
#about .section-content h3::after {
content: "⮟";
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
font-size: 1.2em;
}
#about .section-content .details {
display: none;
padding: 15px;
border-radius: 8px;
margin-top: 10px;
animation: slideDown 0.5s ease;
}
#about .section-content .details.show {
display: block;
}
#about .section-content .details.hide h3::after {
transform: rotate(180deg) translateY(-50%);
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<div class="objective">
<h3>Career Objectives</h3>
<p>Seeking a dynamic role as Front End Developer with Infotech where my vibrant energy, enthusiasm for learning, and commitment to contributing effectively can help achieve the goals and drive positive changes.</p>
</div>
<div class="section-content">
<h3 onclick="toggleDetails('education-details')">Education</h3>
<div id="education-details" class="details">
<p><strong>M.KUMARASAMY COLLEGE OF ENGINEERING, KARUR</strong><br>B.E in Computer Science And Engineering (2022-2026)</p>
<p><strong>NARAYANA JUNIOR COLLEGE, VIJAYAWADA</strong><br>Higher Secondary School Certificate 2022 Percentage-84.0%</p>
<p><strong>NARAYANA CO SCHOOL, NELLORE</strong><br>Secondary School Leaving Certificate 2020 Percentage-99.6%</p>
</div>
</div>
<!-- Add more sections as needed -->
</section>
<footer>
<p>© 2024 Hariharan. All rights reserved.</p>
</footer>
<script>
function toggleDetails(id) {
const element = document.getElementById(id);
if (element.classList.contains('show')) {
element.classList.remove('show');
element.classList.add('hide');
} else {
element.classList.add('show');
element.classList.remove('hide');
}
}
</script>
</body>
</html>