Case-Based Critical Thinking QuestionsCase 2-2You are writing a brief manual on Web page design and you are reviewing the guidelines section you've written. How do you tell readers they can have greater control over the look of the final site, considering that not every font in the font list may be found on every computer?
A. Convert text into an image
B. Use integrated fonts
C. Use sublimated fonts
D. Use fixed font sizes
Answer: A
You might also like to view...
Select the true statement from the list below
a. No single testing tool can automatically test for all web standards. b. Include as many people as possible when you conduct usability tests. c. Search engines listings are effective immediately after submission. d. None of the above statements are true
Which of the following code displays the area of a circle if the radius is positive.
a. if (radius != 0) System.out.println(radius * radius * 3.14159); b. if (radius >= 0) System.out.println(radius * radius * 3.14159); c. if (radius > 0) System.out.println(radius * radius * 3.14159); d. if (radius <= 0) System.out.println(radius * radius * 3.14159);