Posts

Showing posts from October, 2021

Form Samples

Image
<!DOCTYPE html> <html>   <head>     <title>Title of the document</title>     <style>       label {         display: inline-block;         width: 20%;       }       fieldset {         background: #AFB8C1;        }       legend {         padding: 10px 0;         font-size: 30px;       }                </style>        </head>               <body>      <fieldset>    <h1>Registration Form: </h1>    </fieldset> <br>       <form action="/form/submit" method="get">      <fieldset>         <...