Computer Science, asked by gsaritha2005, 2 months ago

On line Registration form
Student name
Student Class:
School name: JOHNSON GRAMMAR SCH
Branches
habsiguda mallapur L B Nagar
SUBMIT





write the html coding for the following​

Answers

Answered by khumandhruv1720
0

Explanation:

<form>

<label for="student_name">Student Name:</label>

<input type="text" id="student_name" name="student_name">

<br>

<label for="student_class">Student Class:</label>

<input type="text" id="student_class" name="student_class">

<br>

<label for="school_name">School Name:</label>

<input type="text" id="school_name" name="school_name" value="JOHNSON GRAMMAR SCH" readonly>

<br>

<label for="branches">Branches:</label>

<select id="branches" name="branches">

<option value="habsiguda">Habsiguda</option>

<option value="mallapur">Mallapur</option>

<option value="LB_Nagar">LB Nagar</option>

</select>

<br>

<input type="submit" value="SUBMIT">

</form>

Similar questions