INSTAGRAM icon Designing using HTML and CSS.

INSTAGRAM ICON DESIGN :- 




                                                                                               Hey guy's in this tutorial

 we have designed a INSTAGRAM logo . Yes , logo we have designed will not

 perfectly match to original but we think no one going to say that your logo is not  like

 original logo. We request all to execute this web program once it will really joyful

 once you got correct result. You will really going happy as you see output in given  video.



PROGRAM SOURCE CODE :-


1) HTML coding :



<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>Logo Desgning By Me</title>
    <link rel="stylesheet" type="text/css" href="..\CSS\Logo_Desgining.css">
</head>
<body>
<!-- -----------------Instagram Logo Coding ------------------>

    <div id="main-div">
        <h1>(2) InstaGram</h1>
        <div id="center-div-one">
            <div id="square"></div>
        </div>
    </div>
</body>
</html>





2) CSS coding :




*
*::before,
*::after
{
    margin0;
    padding0;
    box-sizingborder-box;
}

html{
    font-size62.5%;
}

body{
    overflow-xhidden;
}

#main-div{
    width100vw;
    height:100vh;
    background-colorrgba(0,0,0,0.8);
    displaygrid;
    place-items:center;
}

#center-div-one{
    width30rem;
    height:30rem;
    border-radius6rem;
     backgroundradial-gradient(circle at 30% 107%#fdf497 0%,
 #fdf497 5%#fd5949 45%#d6249f 60%#285AEB 90%);
     displaygrid;
     place-items:center;
}

#square{
    width20rem;
    height20rem;
    border:1.2rem solid #fff;
    border-radius6rem;
    background-colortransparent;
    positionrelative;
    displaygrid;
    place-items:center;
}

#square::before{
    content" ";
    width10rem;
    height10rem;
    border1.2rem solid #fff;
    border-radius50%;
    positionabsolute;
    background-colortransparent;
}

#square::after{
    content" ";
    width2rem;
    height2rem;
    border-radius50%;
    background-color#fff;
    positionabsolute;
    top:15%;
    right10%;
}





OUTPUT :- 






( NOTE : - While executing program you have to replace links of images , audio's  or video's in this program by your links. So take care of it ! )