NAV BAR WITH FOOTER CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
*{
margin: 0px;
padding: 0px;
}
.nav{
height: 100px;
width: 2000px;
background-color: crimson;
position: sticky;
/* this is search bar selector */
.sbar{
height: 42px;
width: 372px;
padding:2px 2px 2px 2px;
margin: -40px 0px 0px 500px;
background-color: aliceblue;
} }
li{
display: inline-block;
padding: 15px 5px 5px 25px;
margin: 10px 0px 0px 0px;
text-align: center;
a{
text-decoration: none;
color: aliceblue;
}
}
footer{
margin: 423px 0px 0px 0px ;
background-color: rgb(105, 216, 14);
height: fit-content;
width: 2000px;
text-wrap:stable;
}
</style>
<body>
<div class="nav">
<img src alt>
<ul>
<li><a href>HOME</a></li>
<li><a href>SIGN IN</a></li>
<li><a href>OUR COURSES</a></li>
<li><a href>JOIN NOW</a></li>
</ul>
<div class="sbar"></div>
</div>
<footer>
Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for FAIR USE for purpose such a as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statues that might otherwise be infringing. Non- Profit, educational or personal use tips the balance in favor of FAIR USE.
</footer>
</body>
</html>
Comments
Post a Comment