English, asked by aasthachitlangia111, 7 months ago

Write the HTML code to create the form shown below.
(Note.click on Question to enlarge)
Applicant Full Name
Course Attendence:
Everyday
Everyday
Thrice a week
Weekends Only
Submit​

Answers

Answered by Anonymous
2

Explanation:

Forms contain special elements called controls like inputbox, checkboxes, radio-buttons, submit buttons, etc. Users generally complete a form by modifying its controls e.g. entering text, selecting items, etc. and submitting this form to a web server for further processing.

The <form> tag is used to create an HTML form. Here's a simple example of a login form:

ExampleTry this code »

<form>

<label>Username: <input type="text"></label>

<label>Password: <input type="password"></label>

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

</form>

The following section describes different types of controls that you can use in your form.

Similar questions