HTML CSS Bat Ball Hover Effect
 
        HTML <!DOCTYPE html> <html lang="en">  <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Transform</title>     <link rel="stylesheet" href="style.css"> </head>  <body>     <h1>Hover on the bat ... </h1>     <div class="field">         <img class="bat" src="img/bat.png">         <div class="ball"> </div>     </div> </body>  </html>        CSS  h1 {     font-size  : 50px;     text-align : center;     font-weight: bolder;     font-family: 'Segoe UI'; }  .field {     border          : 5px dotted green;     background-color: rgba(4, 145, 4, 0.2);     width           : 85%;     height          : 550px;     margin          : auto;     padding         : 30px; }  /***************** bat **************...
 
 
 
 
 
