Posts

Showing posts with the label frontend 2024

Instagram Follow Button Style - Frontend 2024 - Html & CSS.

 Instagram Follow Button Code :  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title >     < style >         .follow-btn {             background-color : rgb ( 33 , 125 , 218 );             border : none ;             border-radius : 4px ;             padding : 5px 12px ;             color : white ;             margin : 0 30% ;             font-weight : bold ;             letter-spacing : 1px ;         }     </ style > </ head > < body >  ...

Subscribe Button Styles - Frontend in 2024 - Html & CSS.

Image
Subscribe Button Styles Code :  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title >     < style >         .subscribe {             display : flex ;             align-items : center ;             gap : 0.5rem ;             background-color : rgb ( 229 , 231 , 234 );             padding : 0 6px ;             width : 120px ;             border-radius : 16px ;             margin : 0 30% ;         }     </ style > </ head > < body >     < ...