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>Survey Form</title>
    <Style>
        body{
            background-color#05c46b;
            font-familyVerdana;
            text-aligncenter;
        }
        form{
            background-color#fff;
            max-width:500px;
            margin:50px auto;
            padding:30px 20px;
            box-shadow2px 5px 10px rgba(0000.5);
        }
        .form-control{
            text-alignleft;
            margin-bottom:25px;
        }
        .form-control label{
            display:block;
        }
        .form-control input,
        .form-control select,
        .form-control textarea {
            border1px solid #777;
            border-radius2px;
            font-familyinherit;
            padding:2px;
            display:block;
            width:95%;
            
        }
        .form-control input[type="radio"],
        .form-control input[type="checkbox"]{
            display:inline-block;
            width:auto;
        }
        button{
            background-color#05c46b;
            border1px solid #777;
            border-radius2px;
            font-familyinherit;
            font-size21px;
            displayblock;
            width100%;
            margin-top50px;
            margin-bottom20px;
        }
    </Style>
</head>
<body>
    <h1>Survey Form</h1>


    <form>
    <div class="form-control">
        <label for="name" id="label-name">Name</label>
        <input type="text" id="name" placeholder="Enter your name">
    </div>
    <div class="form-control">
        <label for="email" id="label-email">Email</label>
        <input type="text" id="email" placeholder="Enter your Email">
    </div>    
    <div class="form-control">
        <label for="age" id="label-age">Age</label>
        <input type="text" id="age" placeholder="Enter your age">
    </div>     
    <div class="form-control">
        <label for="role" id="label-role">Which option best describes you?</label>

        <!-- Dropdown Menu -->
        <select name="role" id="role">
            <option value="student">Student</option>
            <option value="intern">Intern</option>
            <option value="professional">Professional</option>
            <option value="other">Other</option>
            
        </select>
    </div>  
    <div class="form-control">
        <label>Would you Recommend GeeksForGeeks to a friend?
       </label>
        <!-- input type for radio button -->
        <label for="recommend-1">
            <input type="radio" id="recommend-1" name=recommed>Yes</input>
        </label>
        <label for="recommed-2">
            <input type="radio"
                   id="recommed-2"
                   name="recommed">No</input>
        </label>
        <label for="recommed-3">
            <input type="radio"
                   id="recommed-3"
                   name="recommed">Maybe</input>
        </label>
    </div>
    <div class="form-control">
        <label>
            Languages and Frameworks known<small>(Check all that apply)</small>
        </label>
        <label for="inp-1">
            <input type="checkbox" name="inp">C</input>
        </label>
        <label for="inp-2">
            <input type="checkbox"
                   name="inp">C++</input></label>
        <label for="inp-3">
            <input type="checkbox"
                   name="inp">C#</input></label>
        <label for="inp-4">
            <input type="checkbox"
                   name="inp">Java</input></label>
        <label for="inp-5">
            <input type="checkbox"
                   name="inp">Python</input></label>
        <label for="inp-6">
            <input type="checkbox"
                   name="inp">JavaScript</input></label>
        <label for="inp-7">
            <input type="checkbox"
                   name="inp">React</input></label>
        <label for="inp-7">
            <input type="checkbox"
                   name="inp">Angular</input></label>
        <label for="inp-7">
            <input type="checkbox"
                   name="inp">Django</input></label>
        <label for="inp-7">
            <input type="checkbox"
                   name="inp">Spring</input></label>
    </div>
    <div class="form-control">
        <label for="comment">Any Comment or Suggestions</label>
        <textarea name="comment" id="comment" placeholder="Enter your comment here">
        </textarea>
    </div>
      <button>Submit</button>
    </form>
</div>
    
</body>
</html>





















Comments