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

Fotter with Bottom Navigation #21

Open
wants to merge 2 commits into
base: main
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
112 changes: 112 additions & 0 deletions Footer/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<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">
<title>Document</title>

<!-- css stylesheets-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="webd.css">

<!--font Awesome ... for button icon-->
<script src="https://kit.fontawesome.com/9973cec642.js" crossorigin="anonymous"></script>



</head>
<body>
<h2> Hello World</h2>

<!-- Footer -->


<footer id="footer">


<footer class="page-footer font-small ">

<!-- Footer Links -->
<div class="container bar">

<!-- Grid row-->
<div class="row text-center d-flex justify-content-center pt-5 mb-3">

<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">About us</a>
</h6>
</div>
<!-- Grid column -->

<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Products</a>
</h6>
</div>
<!-- Grid column -->

<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Awards</a>
</h6>
</div>
<!-- Grid column -->

<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Help</a>
</h6>
</div>


</div>

<hr>
<div class="social">
<a href="#!"><i class="social-media fab fa-linkedin-in fa-2x"></i></a>
<a href="#!"><i class="social-media fab fa-twitter fa-2x"></i></a>
<a href="#!"><i class="social-media fab fa-instagram fa-2x"></i></a>
<a href="#!"><i class="social-media fas fa-envelope fa-2x"></i></a>

</div>


<div class="row d-flex text-center justify-content-center mb-md-0 mb-4">


<div class="col-md-8 col-12 mt-5">
<h4>Terms of Service-Privacy Policy-@2021Company</h4>
<h4>Website by Company</h4>


</div>


</div>

<div class="BackToTop">

<a id="back-to-top" href="#" role="button"><i class="fas fa-chevron-up fa-2x"></i></a>
<h4>Back To Top</h4>
</div>


</div>

</div>

</footer>
<!-- Footer -->
</footer>





</body>
</html>
31 changes: 31 additions & 0 deletions Footer/webd.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

body{
font-family: 'Montserrat-light';
text-align: center;

}

#footer{
background-color: #383E56;
color:white;
}

hr{
margin-bottom: 5px ;
border: 2px solid white;
}


.BackToTop{
margin-top: 30px;
}


.social-media{
color: white;
margin: 20px 20px;
}

.social-media:hover{
color: #8ab1c9;
}