HTML CSS Bluring Image

One More assignment for bluring background image without affecting any type of Text.

<html>
   <head>
      <style>
         img
{
 filter:blur(10px);
}
.a
{
height:100px;
width:300px;
position:absolute;
top:30px;
left:30px;
font-size:36px;
}
      </style>
   </head>
 
   <body>
<img src="17.jpg" height="400px" width="400px">
<div class="a">HyperText Markup Language</div>
  </body>
<html>

Comments

Popular Posts