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
63 changes: 62 additions & 1 deletion css/main_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -381,4 +381,65 @@ h3{
}
}

/* Media query is Close*/
/* Footer Section */
.footer {
background: #fff; /* White background */
color: #000; /* Black text color */
text-align: center;
padding: 20px 0;
}

.footer h4 {
margin-bottom: 10px;
font-size: 20px;
font-weight: bold;
color: #000; /* Ensure heading is black */
}

.footer p {
margin: 0;
font-size: 14px;
line-height: 1.6;
color: #333; /* Slightly darker gray for text */
}

.footer-links {
margin: 10px 0;
}

.footer-links a {
color: #000; /* Black text for links */
text-decoration: none;
margin: 0 10px;
font-size: 14px;
}

.footer-links a:hover {
text-decoration: underline;
color: #555; /* Subtle color change on hover */
}

/* Social Icons */
.social-icons {
margin: 10px 0;
}

.social-icons a {
display: inline-block;
margin: 0 10px;
color: #000; /* Black icons */
font-size: 24px; /* Icon size */
transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effects */
}

.social-icons a:hover {
color: #007bff; /* Blue color on hover */
transform: scale(1.2); /* Slight zoom effect */
}

#copyright {
margin-top: 10px;
font-size: 12px;
color: #666; /* Light gray for copyright text */
}

Binary file added image/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 20 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<link rel="stylesheet" href="css/main_style.css">
<link rel="shortcut icon" href="image/favicon.ico" type="image/svg+xml">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>

Expand Down Expand Up @@ -131,13 +132,25 @@ <h1> &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
</section>

<!--Footer-->
<section class="footer">
<h4>About Us</h4>
<p>The Gokul Global University at Sidhpur provide one of the earliest form of technical studies,
which has been vital in setting up the standard of brilliance.</p>
<p id="copyright">Made By &#10084; Jaydipsinh Solanki</p>
</section>

<section class="footer">
<h4>About Us</h4>
<p>The Gokul Global University at Sidhpur provides one of the earliest forms of technical studies,
which has been vital in setting up the standard of brilliance.</p>
<div class="footer-links">
<a href="#">Privacy Policy</a> |
<a href="#">Terms of Use</a> |
<a href="#">FAQs</a> |
<a href="Contact_page.html">Contact Us</a>
</div>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
<p id="copyright">Made With &#10084; by Jaydipsinh Solanki | &copy; 2025 Gokul Global University. All rights reserved.</p>
</section>

<!--Javascript is Start-->
<script src="javascript/main_script.js"></script>
</body>
Expand Down