Posts

Showing posts from August, 2023

HTML Flexible Login Form

Image
<! DOCTYPE html > < html > < head >     < style >         * {             box-sizing: border-box ;         }         body {             font-family: Arial , sans-serif ;             background-color: #222 ;             margin: 0 ;             display: flex ;             justify-content: center ;             align-items: center ;             min-height: 100 vh ;         }         .form-container {             background: linear-gradient (to right , violet, indigo, blue , green , yellow , orange , red );             border-radius: 5 px ;       ...

Html Webform Code

Image
HTML WEBPAGE DESIGN      < head >     < style >         * {   margin: 0 px ;   padding: 0 px ;   box-sizing: border-box ; } body {   font-family: Georgia , "Times New Roman" , Times , serif ;   color: white ;  background: linear-gradient ( yellow , rgb ( 217 , 11 , 179 )); } .container {   max-width: 90 rem ;   margin: 2 rem auto ;   padding: 0 px 2 rem ; } .img-fluid {   max-width: 100 % ; } .logo img {   width: 70 px ;   height: 70 px ;   border-radius: 41 px ;   outline: 4 px solid rgb ( 33 , 233 , 223 ); } nav {   display: flex ;   justify-content: space-between ;   padding: 1 rem 3 rem ;   align-items: center ; } .items {   display: flex ;   align-items: center ;   gap: 30 px ; } .items a :link {   text-decoration: none ;   color: white ;   font-size: 1.5 rem ;   font-weight: bold ; } .it...