Image Slide using html and css



Image Slide using html and css this is my 100 post in this re




 <!DOCTYPE html>

<html>

<head>

               <title>text around a circle </title>

               

</head>

<body>

               <div class="container">

                              <div class="circle"></div>

                              <h1>Text Around A Circle</h1>

                              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

                              tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

                              quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

                              consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

                              cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

                              proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

               </div>

</body>

</html>                    
                  
                



 body{

               margin: 0;

               padding: 0;

               font-family: sans-serif;

               background: url(bg.jpg);

               background-size: cover;

}

 .container{

               position: absolute;

               top: 50%;

               left: 50%;

               transform: translate(-50%, -50%);

               width: 600px;

               padding: 30px;

               background: #fff;

               box-sizing: border-box;

               border-radius: 10px;

               box-shadow: 0 15px 50px rgba(0,0,0,0.2);

}

 .circle{

               width: 200px;

               height: 200px;

               background: url(fg.jpg);

               background-size: cover;

               border-radius: 50%;

               float: left;

               shape-outside: circle();

               margin: 45px 25px 25px 0;

 }

p{

               margin: 0;

               padding: 0;

               text-align: justify;

               font-size: 19px;

}