Question
1) What is a breadcrumb in web design? a) Breadcrumb is a type of food, nothing to do with web design b) The use of
1) What is a breadcrumb in web design?
a) Breadcrumb is a type of food, nothing to do with web design
b) The use of graphics for navigation
c) Breadcrumb is a type of secondary navigation scheme which allows users to keep track of their locations within a website
d) Breadcrumb is another name for the main navigation scheme
2) Which of the following statements about contextual links is correct?
a) contextual links allow users to jump to cross-references by clicking the word which interests them
b) contextual links are the links which the programmer embed directly in the flow of the websites content
c) contextual links implement hypertext to connect facts, relationships, and concepts
d) All of the above
3)
Given the CSS rules defined below, what colour will the page be when the client browser window size is 785 pixels?
body { background-color: red; }
@media (min-width: 800px) {
body { background-color: green; }
}
@media (min-width: 450px) and (max-width: 800px) {
body { background-color: blue; }
}
@media (max-width: 801px) {
body { background-color: orange; }
}
a) Red
b) Green
c) Blue
d) Orange
4) Text-based linking is often the most effective way to provide navigation on a website.
a) True
b) False
5) ____________ allows content rendering to adapt to conditions such as screen resolution.
a) Screen queries
b) Media queries
c) Adaption queries
d) JavaScript queries
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started