I am trying to create a table where I want to input information about multiple number of profesors how will I be able to create multiple rows for inputting information
    <html>
    <form>
    <table border="2px">
    <TR>
    <TH>Professor Name</TH>
    <TH>DOB</TH>
    <TH>Professor Qualification</TH>
    <TH>Department</TH>
    <TH>Submit Action</TH>
    </TR>
    <TR>
    <TD>
    <input type="text" name="Professor Name">
    <TD>
    <input type="date" name="DOB">
    </TD>
    <TD>
    <input type="text" name="Professor Qualification"> 
    </TD>
    <TD>
    <Please Select Professor Department>
    <select name="Department">
    <option>Select</option>
    <option>Mechanical Engineering</option>
    <option>Electronics & Telecommunication</option>
    <option>Computer Science</option>
    <TD>
    <input type="submit" value="submit me">
    </TD>
    </TR>
    </form>
    </html>
 
     
     
    