REVISION SHEET -01
Multiple Choice Questions (MCQs)
1. What does HTML stand for?
a) Hyper Text Markup Language
b) High Text Machine Language
c) Hyperlinks and Text Mark Language
d) Home Tool Markup Language
2. Which tag is used for the head section?
a) <body>
b) <head>
c) <title>
d) <meta>
3. Which tag is used to create a paragraph?
a) <p>
b) <br>
c) <div>
d) <text>
4. Which tag is used for a line break?
a) <lb>
b) <break>
c) <br>
d) <line>
5. Which input type is used for a checkbox?
a) text
b) radio
c) checkbox
d) select
6. Which tag is used to create an unordered list?
a) <ol>
b) <ul>
c) <li>
d) <list>
7. Which tag is used for bold text?
a) <b>
b) <i>
c) <strong>
d) Both a and c
8. Which tag is used for italic text?
a) <i>
b) <em>
c) <italic>
d) Both a and b
9. Where is the visible content of a webpage written?
a) <head>
b) <body>
c) <title>
d) <html>
10. Which attribute is used to define color?
a) style
b) color
c) font
d) design
True / False
1. HTML is a programming language.
2. <head> contains metadata about the page.
3. <textarea> is used for single-line input.
4. <ol> creates an ordered list.
5. <br> is a closing tag.
6. <div> is a block-level element.
7. <b> and <strong> mean exactly the same thing.
8. Radio buttons allow multiple selections.
9. <pre> preserves spaces and formatting.
10. Attributes provide additional information about elements.
1-Mark Questions (Short Answer)
1. What is HTML?
2. Write the basic structure of an HTML document.
3. What is the use of <head> tag?
4. What is the difference between <ul> and <ol>?
5. What is a checkbox?
6. What is a radio button?
7. What does <br> do?
8. What is <textarea> used for?
9. What is the use of <div> element?
10. What is preformatted text?
11. Write the tag for bold text.
12. Write the tag for italic text.
13. What is an attribute in HTML?
14. How do you add blank space in HTML?
15. What is the purpose of <p> tag?
ANSWERS:
MCQ Answers
1. a) Hyper Text Markup Language
2. b) <head>
3. a) <p>
4. c) <br>
5. c) checkbox
6. b) <ul>
7. d) Both a and c
8. d) Both a and b
9. b) <body>
10. a) style
True / False Answers
1. False
2. True
3. False
4. True
5. False
6. True
7. False
8. False
9. True
10. True
1-Mark Answers
1. HTML is a markup language used to create web pages.
2. Basic structure:
<html>
<head>
<title>Title</title>
</head>
<body>
Content
</body>
</html>
3. <head> contains metadata like title, links, and scripts.
4. <ul> creates unordered (bulleted) list, <ol> creates ordered (numbered) list.
5. A checkbox allows selecting one or more options.
6. A radio button allows selecting only one option from a group.
7. <br> inserts a line break.
8. <textarea> is used for multi-line text input.
9. <div> is used to group elements for styling/layout.
10. Preformatted text (<pre>) preserves spaces and line breaks.
11. Bold tag: <b> or <strong>
12. Italic tag: <i> or <em>
13. An attribute provides additional information about an element (e.g., class, id).
14. Blank space can be added using
15. <p> is used to create a paragraph.
02
REVISION SHEET -01
MCQs (with answers)
1. Which tag is used to define the title of a webpage?
a) <meta>
b) <title>
c) <head>
d) <body>
Answer: b) <title>
2. Which tag is used for inserting a horizontal line?
a) <line>
b) <hr>
c) <br>
d) <hl>
Answer: b) <hr>
3. Which element is used for grouping content?
a) <span>
b) <div>
c) <group>
d) <section>
Answer: b) <div>
4. Which input type is used for entering text?
a) checkbox
b) radio
c) text
d) button
Answer: c) text
5. Which tag is used to create a list item?
a) <li>
b) <ul>
c) <ol>
d) <item>
Answer: a) <li>
6. Which attribute is used to provide extra information about elements?
a) class
b) id
c) Both a and b
d) None
Answer: c) Both a and b
7. Which tag preserves formatting (spaces and line breaks)?
a) <format>
b) <pre>
c) <code>
d) <text>
Answer: b) <pre>
8. Which tag is used for important text?
a) <important>
b) <imp>
c) <strong>
d) <b>
Answer: c) <strong>
9. Which tag is used to create a text area?
a) <input type="text">
b) <textbox>
c) <textarea>
d) <text>
Answer: c) <textarea>
10. Which HTML element defines the entire document?
a) <doc>
b) <html>
c) <page>
d) <body>
Answer: b) <html>
True / False (with answers)
1. <html> is the root element of an HTML page.
True
2. <body> contains metadata.
False
3. <input type="radio"> allows only one selection.
True
4. <ul> uses numbers by default.
False
5. <ol> creates a numbered list.
True
6. <i> is used for italic text.
True
7. <textarea> is self-closing.
False
8. <br> needs a closing tag.
False
9. Attributes are written inside opening tags.
True
10. <div> is an inline element.
False
1-Mark Questions (with answers)
1. What is the use of <title>?
→ It defines the title shown on the browser tab.
2. What is <hr> used for?
→ It creates a horizontal line.
3. Write syntax for checkbox.
→ <input type="checkbox">
4. Write syntax for radio button.
→ <input type="radio">
5. What is <li> used for?
→ It defines a list item.
6. What does <strong> do?
→ It marks text as important (usually bold).
7. What is inline element?
→ It does not start on a new line.
8. What is block-level element?
→ It starts on a new line and takes full width.
9. What is the use of style attribute?
→ It is used to apply CSS styling.
10. What is the difference between <b> and <strong>?
→ <b> is visual bold, <strong> adds importance (semantic).
11. What is <em> used for?
→ It emphasizes text (usually italic).
12. Write HTML for a line break.
→ <br>
13. Write HTML for preformatted text.
→ <pre>Text</pre>
14. What is the use of <input> tag?
→ It is used to create form inputs.
15. What is default type of <input>?
→ text