-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
145 lines (126 loc) · 4.5 KB
/
about.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Nareshbrabha Sadhasivam</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 {
background: #ffffff;
padding: 40px 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#about h2 {
color: #003366;
}
#about .section-content {
margin: 20px 0;
}
#about .section-content h3 {
background: #e6f7ff;
padding: 15px;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease;
position: relative;
padding-right: 40px;
font-size: 1.2em;
}
#about .section-content h3:hover {
background: #b3e0ff;
}
#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;
background: #f0f8ff;
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%);
}
/* Career Objectives */
#about .objective {
background: #e6f7ff;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}
</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 class="animate__animated animate__bounceIn">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 Electrical and Electronics Engineering (2022-2026) CGPA-8.3</p>
<p><strong>P.A.VIDYA BHAVAN HIGHER SECONDARY SCHOOL, KARUR</strong><br>Higher Secondary School Certificate 2022 Percentage-83.33%</p>
<p><strong>P.A.VIDYA BHAVAN HIGHER SECONDARY SCHOOL, KARUR</strong><br>Secondary School Leaving Certificate 2020 Percentage-88%</p>
</div>
</div>
<!-- Add more sections as needed -->
</section>
<footer>
<p>© 2024 Nareshbrabha. 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>