Html Form 1 , class : 23 -june-24 ,

 <html>


<head>
    <title>Form 1</title>
    <link rel="stylesheet" href="formstyle.css">
</head>


<body>

    <form action="popupwindow.html" method="get" target="_parent" autocomplete="on" enctype="multipart/form-data" >

        <div id="Name">
            <label for="fname">First Name:&nbsp;</label>
            <input type="text" id="fname" placeholder="First Name" autocomplete="on">
            <br><br>
            <label for="lname">Last Name:&nbsp;</label>
            <input type="text" id="lname" placeholder="Last Name" >
        </div>

        <br><br>

        <div id="Address">
            <label for="Address">Address:</label>
            <br>
            <textarea rows="5" cols="31"></textarea>
        </div>

        <br>

        <div id="Colour">
            <label for="Color">Favourite Colour: </label>&nbsp;&nbsp;&nbsp;&nbsp;
            <input type="color">
        </div>

        <br>

        <div id="Age">
            <Label for="DOB">Date Of Birth:&nbsp;&nbsp;&nbsp;&nbsp;</Label>
            <input type="date" id="DOB" placeholder="Enter Date of Birth">
        </div>
       
        <br>

        <div id="Communication">
            <label for="ESP">English Speaking Proficiency: </label>
            <input type="range">
        </div>
        <br><br>
        <div id="Submit&reset">
            <center>
                <input type="submit" value="Submit">
                <input type="reset" value="Reset">
            </center>
           
        </div>
    </form>
</body>

</html>

Comments