Posts

Showing posts from December, 2022

How to create a Portfolio Gallery using HTML and CSS ?

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > create a port folio gallery </ title >     < link rel = "stylesheet" href = "style.Css" > == use this if make seperate css cheet <style> body {     padding : 15px ; } .container {     max-width : 1200px ;     margin : auto ; } h1 {     color : green ; } a {     text-decoration : none ;     color : #5673C8 ; } a:hover {     color : lightblue ; } p {     display : -webkit-box;     -webkit-box-orient : vertical ;     -webkit-line-clamp : 4 ;     overflow : hidden ; } .row {     margin : 0px -18px ;   ...

Build a Survey Form using HTML and CSS

 <!DOCTYPE html> <html lang="en">    <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content=         "width=device-width, initial-scale=1.0">     <title>         Build a Survey Form using HTML and CSS     </title>     <style>     body {     background-color: #05c46b;     font-family: Verdana;     text-align: center;     }     form {     background-color: #fff;     max-width: 500px;     margin: 50px auto;     padding: 30px 20px;     box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);     }     .form-control {     tex-align: left;     margin-bottom: 25px;     }     .form-control label {  ...