HTML Tags-1
1. HTML stands for
a) Hyper Tag Markup Language
b) HyperText and links Markup Language
c) HyperText Markup Language
d) None of the above
Answer: C
HTML stands for HyperText Markup Language.
2. Which tag tells the browser where the page starts and stops?
a) <html> tag
b) <title> tag
c) <head> tag
d) None of the above
Answer: A
html tag tells the browser where the page starts and stops.
3. To create HTML page, you need
a) Web Browser
b) Text Editor
c) Both (a) and (b)
d) None of the above
Answer: C
No explaination is given for this question.
4. The <body> tag is used after
a) <html> tag
b) <title> tag
c) <head> tag
d) None of the above
Answer: A
<body> tag is used after the <html> tag.
5. All HTML tags are enclosed in
a) { and }
b) [ and ]
c) # and #
d) < and >
Answer: D
All HTML Tags are enclosed in < and >
6. Tags that have both opening and closing tags are called
a) Void Tags
b) Paired Tags
c) Document tags
d) None of the above
Answer: B
Tags that have both opening and closing tags are known as paired tags.
7. Tags that don't have a closing tag or any contents are called as
a) Void Tags
b) Paired Tags
c) Document tags
d) None of the above
Answer: D
Tags that don't have a closing tag or any contents are called as void tags.
8. The correct sequence of HTML tags for starting a webpage is
a) Head, Title, HTML, Body
b) HTML, Body, Title, Body
c) HTML, Head, Title, Body
d) HTML, Head, Title, Body
Answer: C
No explaination is given for this question.
9. Which character is used to represent the closing of a tag?
a) /
b) \
c) !
d) ,
Answer: A
The Forward-slash (/) is used to indicate the closing of a tag in HTML.
10. <!-- --> is a ______
a) Comment tag
b) Document tag
c) Void tag
d) Singular tag
Answer: A
<!-- --> is a comment tag.