PDF Download
FREE COMPUTERS AND STUDY GAMES ABOUT HTML
TAGS! EXAM QUESTIONS
Actual Qs and Ans Expert-Verified Explanation
This Exam contains:
-Guarantee passing score -66 Questions and Answers -format set of multiple-choice -Expert-Verified Explanation
Question 1: frameset
Answer:
used to separate the window into frames. For example, you can have a left frame for navigation and a right frame for the main content.
Question 2: option
Answer:
The HTML option tag is used in conjunction with the select tag and is used for defining option items within the select list.
Question 3: blockquote
Answer:
The HTML blockquote tag is used for indicating long quotations (i.e. quotations that span multiple lines).
Question 4: big
Answer:
The HTML big tag is used for specifying large text.
Question 5: ins
Answer:
The HTML ins tag is used for markup of inserted text.
Question 6: h2
Answer:
The HTML h2 tag is used for specifying level 2 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.
Question 7: center
Answer:
The HTML center tag is used to center-align HTML elements.
Question 8: iframe
Answer:
The HTML iframe tag is used to specify an inline frame.
Question 9: br
Answer:
The HTML br tag is used for specifying a line break.
Question 10: !--...--
Answer:
The HTML 'comments' tag is used for creating comments within your HTML code.
Question 11: !doctype
Answer:
The HTML !doctype tag is used for specifying which version of HTML the document is using. This is referred to as the document type declaration (DTD).
Question 12: dir
Answer:
The HTML dir tag is used for specifying a directory list.
Question 13: li
Answer:
The HTML li tag is used for specifying a list item in ordered, unordered, directory, and menu lists.
Question 14: basefront
Answer:
The HTML basefont tag is used to specify a base font for the document to use.
Question 15: bdo
Answer:
The HTML bdo tag is used for overriding the text direction.
Question 16: b
Answer:
The HTML b tag is used for specifying bold text.
Question 17: meta
Answer:
The HTML meta tag is used for declaring metadata for the HTML document.
Question 18: cite
Answer:
The HTML cite tag is used for indicating a citation.
Question 19: >,<
Answer:
Put before every HTML command
Question 20: html
Answer:
the container that contains all other HTML elements (except for the !DOCTYPE tag which is located before the opening html tag). All other HTML elements are nested between the opening and tags.
Question 21: map
Answer:
The HTML map tag is used for defining an image map.
Question 22: menu
Answer:
The HTML menu tag is used for specifying a menu list.
Question 23: object
Answer:
The HTML object tag is used for embedding an object within an HTML document. Use this tag to embed multimedia in your web pages.
Question 24: div
Answer:
used for defining a section of your document.it can group large sections of HTML elements together and format them with CSS. For example, you could have your navigation section wrapped in one div and your main content section in another div.
Question 25: h4
Answer:
The HTML h4 tag is used for specifying level 4 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.
Question 26: caption
Answer:
The HTML caption tag is used for creating table captions.
Question 27: fieldset
Answer:
used for grouping related form elements. By using the fieldset tag and the legend tag, you can make your forms much easier to understand for your users.