THE MANTHAN SCHOOL, GREATER NOIDA (W)
Grade 6
Project: HTML Forms
Fill in the blanks:
1. Checkbox allow us to select more than 1 options.
2. Every HTML Form starts with <form> tag.
3. A radio button allows the user to select only one option from a list of options.
4. <input type=”range”> creates an input field with a slider.
5. <input type= “file”> help user to upload a file in HTML form.
Multiple Choice Questions:
1. _________ element is used to add a small text input window for name or email.
a) Form
b) Input
c) Textbox
d) Button
2. <input> tag is used with type _________ to add button in form.
a) Textarea
b) Checkbox
c) Text
d) Submit
3. Select short keyboard combination key to use “Run with Live Server”.
a) Alt + L + O
b) Shift + L + O
c) Ctrl + L + O
d) Alt + LO
4. Which of the following tag is used to create a Drop-down list?
a) <Select>
b) <legend>
c) <label>
d) <textarea>
5. Which of the following tag is used to add text for the fieldset border?
a) <fieldset>
b) <input>
c) <legend>
d) <textarea>
Page 1 of Page 2
6.
Name the tag used to write ‘First Name’ on the form.
a) Form
b) Label
c) Input
d) Button
Answer the following:
1. What do you understand by HTML Form Elements?
Ans: HTML provides several form elements that provides different interfaces for obtaining user inputs.
Some elements are:
<label>
<input>
<Select>
<textarea> etc.
2. What do you mean by HTML Form?
Ans: HTML forms means collecting information from the users online. The data collected by HTML forms are
permanent.
Syntax : <Form> ……</Form>
3. Define descriptive textbox in HTML Form.
Ans: Descriptive textbox is used to write multiple sentences using <textarea> element.
This element has 2 attributes row and cols.
Row attribute define height and Cols attributes define width of the textarea.
Page 2 of Page 2