Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -655,13 +655,13 @@ <h3 class="faq-title">
<ul class="quick-links">
<h3>QUICK LINKS</h3>
<a href="#faq">
<li>FAQ</li>
<li class="link">FAQ</li>
</a>
<a href="#register">
<li>Register</li>
<li class="link">Register</li>
</a>
<a href="./pages/codeofconduct.html" target="_blank">
<li>Code Of Conduct</li>
<li class="link">Code Of Conduct</li>
</a>
</ul>
</div>
Expand Down
8 changes: 4 additions & 4 deletions pages/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<div class="event-section">
<div class="event-heading">
<h2>EVENTS</h2>
<h4>Life is an event. Make it remarkable</h4>
<h4>Life is an event. Make it remarkable!</h4>
</div>
<div class="event-details">
<img src="../assets/Events/Events1.jpeg" alt="">
Expand Down Expand Up @@ -114,9 +114,9 @@ <h4>Life is an event. Make it remarkable</h4>
<img class="contact-logo" src="../assets/favicon.png" alt="">
<ul class="quick-links">
<h3>QUICK LINKS</h3>
<a href="../index.html#faq"><li>FAQ</li></a>
<a href="../index.html#register"><li>Register</li></a>
<a href="./codeofconduct.html" target="_blank"><li>Code Of Conduct</li></a>
<a href="../index.html#faq" class="link"><li>FAQ</li></a>
<a href="../index.html#register" class="link"><li>Register</li></a>
<a href="./codeofconduct.html" target="_blank" class="link"><li>Code Of Conduct</li></a>
</ul>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions pages/teampage.html
Original file line number Diff line number Diff line change
Expand Up @@ -631,13 +631,13 @@ <h3 class="full-name">Meenu Singh</h3>
<ul class="quick-links">
<h3>QUICK LINKS</h3>
<a href="../index.html#faq">
<li>FAQ</li>
<li class="link">FAQ</li>
</a>
<a href="../index.html#register">
<li>Register</li>
<li class="link">Register</li>
</a>
<a href="./codeofconduct.html" target="_blank">
<li>Code Of Conduct</li>
<li class="link">Code Of Conduct</li>
</a>
</ul>
</div>
Expand Down
8 changes: 8 additions & 0 deletions styles/event.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,4 +328,12 @@ nav .mainMenu li a.nav-underline-event {
.contact-links{
justify-content: center;
}
}

/* Footer-Links */

.link:hover{
text-decoration: underline;
color: rgb(245, 240, 240);

}
8 changes: 8 additions & 0 deletions styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1285,3 +1285,11 @@ fade {
justify-content: center;
}
}

/* Footer-Links */

.link:hover{
text-decoration: underline;
color: rgb(245, 240, 240);

}
7 changes: 7 additions & 0 deletions styles/teampage.css
Original file line number Diff line number Diff line change
Expand Up @@ -455,3 +455,10 @@ nav .mainMenu li a.nav-underline-team {
justify-content: center;
}
}
/* Footer-Links */

.link:hover{
text-decoration: underline;
color: rgb(245, 240, 240);

}