16. What downloadable Web font format is the only format supported by Internet E
ID: 3705143 • Letter: 1
Question
16. What downloadable Web font format is the only format supported by Internet Explorer?
• TTF
• EOT
• WOFF
• OTF
17. Alternative fonts are also referred to as ___________ fonts in CSS.
• font-family
• understudy
• cursive
• fantasy
18. Which generic font family would be best used for displaying smaller text on a screen?
• Serif
• Sans-serif
• Cursive
• Fantasy
19. When adding a text drop shadow the following CSS property should be used:
• drop-shadow
• text-shadow
• text-drop-shadow
• shadow
20. Consider the following: rgb (255,255,255), this is an example using which one of the following values:
• RGB hex values
• Percentage values
• RGB decimal values
• HSL values
21. The __________ background property in CSS sets whether the background fits to the border or just within the content area.
• Clip
• Origin
• Attachment
• Size
22. The __________ table method bases its layout on the width of the table and the width of the columns in the first row.
• automatic
• liquid
• fixed
• dynamic
23. The __________ value of the content property is used to add a quotation mark using the current quotation style.
• quotes
• no-open-quote
• no-close-quote
• open-quote or close-quote
24. Which of the following declarations will create a custom cursor named cursor_01.jpg for the paragraph () tag? NOTE: The cursor graphic is located within the same directory as the CSS and HTML files.
• p { cursor: custom(cursor_01.jpg); }
• p { cursor: (cursor_01.jpg); }
• p { cursor: url(cursor_01.jpg); }
• p { cursor: pointer-cursor_01.jpg; }
25. Which type of elements flow horizontally using a soft line break when reaching the edge of its parent element?
• Inline
• Embedded
• Block-level
• None of the answers are correct.
Explanation / Answer
16.
WOFF
17.
font-family
18.
Serif
19.
text-shadow is used to show drop shadow in text.
20.
These values are RGB decimal values.
21.
background-size is used to Specify the size of a background image with "auto" and in pixels.
22.
automatic is used to set auto size of table and column width.
23.
quotes
like below
<style>
a::after {
content: " ?";
}
</style>
24.
p { cursor: url(cursor_01.jpg); }
25.
Inline
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.