Skip to content

Commit 515f20d

Browse files
authored
Update README.md
1 parent f57090a commit 515f20d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@
1313
background-color: #000; /* Black Background */
1414
color: #FFD700; /* Yellow Text */
1515
}
16+
1617
header {
1718
background-color: #1a1a1a;
1819
color: #FFD700;
1920
padding: 20px 10px;
2021
text-align: center;
2122
}
23+
2224
.nav-links {
2325
list-style: none;
2426
padding: 0;
@@ -27,6 +29,7 @@
2729
justify-content: center;
2830
gap: 20px;
2931
}
32+
3033
.nav-links a {
3134
text-decoration: none;
3235
color: #FFD700;
@@ -36,49 +39,60 @@
3639
background-color: transparent;
3740
border-radius: 4px;
3841
}
42+
3943
.nav-links a:hover {
4044
color: #000;
4145
background-color: #FFD700; /* Yellow Background on Hover */
4246
}
47+
4348
section {
4449
display: none; /* Hide sections by default */
4550
padding: 20px;
4651
}
52+
4753
section.active {
4854
display: block; /* Show the active section */
4955
}
56+
5057
footer {
5158
background-color: #1a1a1a;
5259
color: #FFD700;
5360
text-align: center;
5461
padding: 10px;
5562
}
63+
5664
.github {
5765
text-align: center;
5866
margin-top: 30px;
5967
}
68+
6069
.github a {
6170
color: #FFD700; /* Yellow color for GitHub links */
6271
text-decoration: none;
6372
font-weight: bold;
6473
}
74+
6575
.github a:hover {
6676
color: #00acee; /* Blue on hover */
6777
}
78+
6879
.assignment {
6980
background-color: #1a1a1a;
7081
padding: 15px;
7182
margin: 20px 0;
7283
border-radius: 8px;
7384
box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
7485
}
86+
7587
.assignment h3 {
7688
color: #FFD700; /* Yellow for assignment titles */
7789
}
90+
7891
a {
7992
color: #FFD700; /* Default yellow color for links */
8093
text-decoration: none;
8194
}
95+
8296
a:hover {
8397
color: #00acee; /* Blue on hover for consistency */
8498
}
@@ -88,7 +102,9 @@
88102

89103
<header>
90104
<h1>Database Management Systems - DBMS Portfolio</h1>
105+
<p>I am Pruthvi R, an aspiring database professional passionate about designing efficient, secure, and reliable database systems.</p>
91106
<p>Semester: 3 Semester | Department: Computer Science Engineering</p>
107+
<p>Mentor: Guruprasad Konnurmath | Course Code: 15ECSC208</p>
92108
<p>Contact: <a href="mailto:01fe23bcs228@kletech.ac.in" style="color: #FFD700;">01fe23bcs228@kletech.ac.in</a></p>
93109
<ul class="nav-links">
94110
<li><a href="#home" onclick="showSection('home')">Home</a></li>
@@ -158,5 +174,6 @@
158174
document.getElementById(sectionId).classList.add("active");
159175
}
160176
</script>
177+
161178
</body>
162179
</html>

0 commit comments

Comments
 (0)