CSS Header

                                            CSS Header

<html>
   <head>
      <style>
body
{margin:0px;
padding:0px;
}
   .a
{
height:130px;
width:100%;
background-color:red;
padding-top:10px;
box-sizing:border-box;
}
h1
{
text-shadow:1px 1px 1px green,
2px 2px 1px green,
3px 3px 1px green,
4px 4px 1px green,
5px 5px 1px green,
6px 6px 1px green;

}
h2
{
text-shadow:5px 5px 3px white;
}

      </style>
   </head>
 
   <body>

<div class="a">
<center><h1 style="color:white">Welcome to Flower Shop</h1>
<h2 style="color:yellow">A Flower House</h2></center>
</div>
</body>
<html>

Let's have an output



Comments

Popular Posts