Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEW FOOTER STYLE UNDER ISSUE OF #221

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
28 changes: 28 additions & 0 deletions footer_style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* footer section start */
*{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-o-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}
body{
font-size:25px;
max-width:1820px;
margin:0 auto;
overflow-x:hidden;
font-family: poppins;
}
#footer{
padding: 5rem;
background-image: linear-gradient(rgba(21, 20, 20, 0), rgba(0, 0, 0, 0.7)), url(./eduford_img/background.jpg);
size-adjust: 35%;
}
.icons ul {
display: flex;
list-style: none;
padding: 0;
font-size:55px;
}

/* footer section end */
78 changes: 40 additions & 38 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="footer_style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://kit.fontawesome.com/628003722a.js" crossorigin="anonymous"></script>
Expand All @@ -16,13 +16,14 @@
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css">
<link rel="stylesheet" href="index.css">

<title>EDUFORD UNIVERSITY WEBSITE</title>
</head>

<body>
<section class="header">
<nav><a href="index.html"><img src="./eduford_img/logo.png" alt=""></a>
<div class="nav-links" id=" navLinks">
<div class="nav-links" id="navLinks">
<i class="fa-sharp fa-solid fa-xmark" onclick="hideMenu()"></i>
<ul>
<li class="active-nav"><a href="index.html">HOME</a></li>
Expand Down Expand Up @@ -191,46 +192,49 @@ <h1>Enroll for Our Various Online Courses <br>Anywhere From The World</h1>
</section>

<!-- Footer -->
<section class="footer">
<h4>About Us</h4>
<p>Welcome to our university, where academic excellence meets vibrant campus life. Join our <br>
diverse community of learners and discover endless opportunities for growth, innovation, and success.</p>
<div class="icons">
<ul>
<li>
<a style="color: blue;" href="https://www.facebook.com/" ><i
class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a style=" color: #1DA1F2;" href="https://twitter.com/" ><i class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a style="color: #C13584;" href="https://www.instagram.com/" ><i
class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a style=" color: #0077B5;" href="https://www.linkedin.com/" ><i
class="fa-brands fa-linkedin"></i></a>
</li>
</ul>
<!-- <a style="color: blue;" href="https://www.facebook.com/" ><i
class="fa-brands fa-facebook"></i></a>
<a style=" color: #1DA1F2;" href="https://twitter.com/" ><i class="fa-brands fa-twitter"></i></a>
<a style="color: #C13584;" href="https://www.instagram.com/" ><i
class="fa-brands fa-instagram"></i></a>
<a style=" color: #0077B5;" href="https://www.linkedin.com/" ><i
class="fa-brands fa-linkedin"></i></a> -->
<!-- footer section start -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-3">
<img src="eduford_img/logo.png" alt="image" >
<div class="footer-about">
<p style="font-size:20px;">Welcome to our university, where academic excellence meets vibrant campus life. Join our
diverse community of learners and discover endless opportunities for growth, innovation, and success
</p>
</div>
</div>
<div class="icons">
<h2 style="text-decoration-line: underline; text-indent: 3rem; color: rgb(255, 255, 255);">FOLLOW US </h2>
<ul>
<li>
<a style="color: blue; " href="https://www.facebook.com/" ><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a style=" color: rgba(255, 255, 255, 0.752);" href="https://twitter.com/"><i class="fa-brands fa-x-twitter"></i></a>
</li>
<li>
<a style="color: #C13584;" href="https://www.instagram.com/"><i class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a style=" color: #0077B5;" href="https://www.linkedin.com/"><i class="fa-brands fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>

<button class="go-top-btn">
<img src="up-arrow.png" alt="arrow up">
</button>

<script src="ScrollToTop.js"></script>

<p>made with <i class="fa-regular fa-heart"></i> By Juhi
</p>
</section>
<center >
<p style="font-size:20px;">made with <i class="fa-regular fa-heart"></i> By Juhi
</p>
</center>
</footer>
<!-- footer section end -->

<!-- javascript for toggle menu -->
<script>
Expand Down Expand Up @@ -264,9 +268,7 @@ <h4>About Us</h4>
}

requestAnimationFrame(raf);


</script>
</body>

</html>
</html>