BIT 4444 Quiz Review
In html, the special character operator is __________.
&
Which of the following is an ordered list in html?
1. item 1 2. item 2 3. item 3
The first line of code in an html document is ____________.
<!doctype html>
Which of the following tag is used to indicate a hyper link?
<a>
Which one of the following is a valid inline CSS style?
<p style ="font-size: 20pt;">
The tag used to indicate a table header is _________.
<th>
Which one of the CSS style specification methods achieves the best separation of content from presentation?
External Styles
Child elements do not inherit styles defined for parent elements.
False
Data in hidden input values will not be sent to the action URL when the form is posted (submitted).
False
Radio input types should be used when more than one option can be selected.
False
You can define multiple head elements within an HTML5 page.
False
Which browser does not support the CSS -webkit- extension?
Mozilla Firefoc
Which of the following input fields allows multiple lines of text entry?
TextArea
A figurecaption can be displayed over several images.
True
Styles defined by the author of an HTML document take precedence over styles defined by a user agent (e.g., browser).
True
The <meta> element can be used to provide additional information for search engines to index.
True
The summary element displays a right-pointing arrow next to a summary or caption.
True
The html code <meta charset="utf-8" /> is a/an ____________.
Void Element
Which of the following sectioning elements should be used to describe content that's separate such as a news article?
article
Elements that have lower z-index property values are displayed __________ elements with higher z-index values
behind
________ elements have a virtual box drawn around them.
block-level
Which keyword in the html code, <meta charset="utf-8"> is an attribute name?
charset
In a CSS style rule, a pseudo class (e.g., hover) is preceded by a _________.
colon (:)
Two aspects of any document are ________ and _________.
content and style
Which of the following elements are block-level elements?
div
Which animation property value specifies the amount of time each animation iteration takes?
duration
Which of the following input types has self-validating capability?
In an html document, an image cannot be used as a link.
false
Which CSS style can specify the boldness of text?
font-weight
Which of the following displays shadow to the right and the bottom sides of the h1 block-level element?
h1 {box-shadow: 25px 25px 50px dimgrey;}
The box model means that the content is surrounded by _________, ___________, and ________ (from the closest to the content to the farthest).
padding, border, margin
The ________ attribute allows you to place temporary text in a text field.
placeholder
Which one of the following is an advantage of using CSS?
reducing data transfer over a network
Which of the following input types sends form data to a URL?
submit
Which CSS style can be used to center text in an element?
text-align
What does this CSS rule mean? nav ul { display: block;}
the element will be displayed as a block-level element
Html code is case-insensitive.
true
Specifying an element's position as absolute removes it from the normal flow of elements on the page
true
How many percentages can you define in a keyframes rule?
unlimited
Which bracket is used to specify a CSS style rule?
{}