CSS (Cascading Style Sheets) - answer This is a language used to define uniform
styles to HTML tags.
inline definition - answer Defines the "style" attribute within each HTML tag
internal definition - answer Defines styles within "style" tags in the header of an
HTML file
external definition - answer Defines styles in a separate file that is referred as a link
in the header of an HTML file
Inline - answer This definition works well when CSS styles will be applied to specific
sections of an HTML file, rather than the entire file.
Internal - answer This definition works well when the CSS styles will be applied to all
elements within the HTML file.
inline, internal - answer The use of _________ and _________ definitions reduces
the number of files your web browser must download before displaying the content on
the web page, because the CSS style is embedded in the HTML file.
external - answer When using __________ CSS files, the browser must download
the HTML file first, then the CSS files.
external - answer The primary advantage of CSS __________ definition is that it
allows for design elements to be applied across multiple HTML files
selector - answer Each rule-set is composed of one ___________ that describes the
HTML tag to which it applies.
declarations - answer Each rule-set is composed of a set of __________, which are
delimited by semi-colons within the curly brackets, with each declaration being
composed of a property:value pair
B. font-family - answer What is the property of the first declaration?
p { font-family:arial; text-align:right; }
A. p
B. font-family
C. arial
, D. text-align
E. right
A. p - answer What is the selector of this statement?
p { font-family:arial; text-align:right; }
A. p
B. font-family
C. arial
D. text-align
E. right
C. arial - answer What is the value of the first declaration?
p { font-family:arial; text-align:right; }
A. p
B. font-family
C. arial
D. text-align
E. right
D. text-align - answer What is the property of the second declaration?
p { font-family:arial; text-align:right; }
A. p
B. font-family
C. arial
D. text-align
E. right
E. right - answer What is the value of the second declaration?
p { font-family:arial; text-align:right; }
A. p
B. font-family
C. arial
D. text-align
E. right
A. Simplifies the definition of styles in web pages. - answer What is the purpose of
the CSS standard?