OneCompiler

Index.html

86
<form> <fieldset> <legend>Employee Details</legend> <p> First name: <input type = "text" name = "fname" /> </p> <p> Last name: <input type = "text" name = "lname" /> </p> <p> <input type = "radio" name = "Gender" value = "Male"> Male <input type = "radio" name = "Gender" value = "Female"> Female </p> <p> Employee ID: <input type = "text" name = "ID" /> </p> <p> Designation: <input type = "text" name = "ID" /> </p> <p> Phone Number: <input type = "text" name = "phone" /> </p> <p> <input type = "submit" name = "submit" value = "Submit" /> </p> </fieldset> </form> </body>