HTML+CSS Small project-3

 Basic Footer Design:-

HTML+CSS CODE


<!DOCTYPE html>
     
<html lang="en">
    <head>
       
    <meta charset="UTF-8">
       
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
         

      
    <title>Document</title>
    <!-- <link rel="stylesheet" href="web_app2.css"> -->
    <style>
        .footer{
    background-colorblack;
    positionabsolute;
    width97.1%;
    height50%;
    top50%;
    left0;
    bottom0%;
    right0%;
    colorwhite;
    font-size1.6rem;
    padding-left35px;
    word-spacing30px;  
    font-weight700;
    line-height70px;
    margin0em;
}

.footer_name{

    opacity:0.5;
    text-transformcapitalize;
}
.hr_style{
    width97.1%;
    colorgray;
}
    </style>

</head>
<body>
<h1 style="text-align: center; text-decoration: underline;">Footer design</h1>
<h5 style="opacity: 0.5; text-align: center;">Very Simple design of Footer</h5>
<h5 style="opacity: 0.5; text-align: center;">This is first project of Footer design 
which is looking very simple shows only texts or hr</h5>


<div class="footer"> 
<p class="footer_name">Proident sccsamus readymade jaminise rocketer  sidmerian<br> Exercitation wolfull Amoquino Ackopnizer philipino<br> 
   Tattooed freetumblr ethicalsar nakedler fantoniyo santonio.
</p>
<hr class="hr_style">
</div>
</body>
</html>

OUTPUT:-




Comments

Popular Posts