The great advantage of a Web font is that it gives a designer control over the ______used in a document.

A. theme
B. style
C. font
D. typeface


Answer: D

Computer Science & Information Technology

You might also like to view...

Answer the following questions true (T) or false (F)

1. An applet class is normally defined as a derived class of the class JApplet. 2. Applets normally do not contain a main method.

Computer Science & Information Technology

In this code, the value pivotPoint returned by partition

Consider the code ``` static void doQuickSort(int array[ ], int start, int end) { int pivotPoint; if (start < end) { pivotPoint = partition(array, start, end); doQuickSort(array, start, pivot-1); doQuickSort(array, pivot+1, end); } } ``` A) is the value of the array element that is greater than each element of the first sublist, and less or equal to each element of the second sublist B) is the position of the array element that is greater than each element of the first sublist, and less or equal to each element of the second sublist C) is the element X such that half the elements of the array are less than X, and half the elements of the array are greater or equal to X D) None of the above

Computer Science & Information Technology

What other ways could Wireshark be used in a production network?

What will be an ideal response?

Computer Science & Information Technology

Which of the following video formats developed by Apple cannot be played on Windows computers without a helper application?

A) MPEG B) QuickTime C) AVI D) RealVideo

Computer Science & Information Technology