Map elements can be placed anywhere within the body of the Web page because they are not actually displayed by the browser, but used as references for mapping ____ to inline images.
A. hotspots
B. image maps
C. attributes
D. Both A and B
Answer: A
You might also like to view...
Office 2013 ________ applications give you the full range of options and functions
Fill in the blank(s) with correct word
What will be the coordinates of the center of the oval?
Look at the following applet code: 1 import javax.swing.*; 2 import java.awt.*; 3 public class GraphicsTest extends JApplet 4 { 5 public void init() 6 { 7 getContentPane().setBackground(Color.WHITE); 8 } 9 public void paint(Graphics g) 10 { 11 super.paint(g); 12 g.setColor(Color.YELLOW); 13 g.fillOval(100, 100, 50, 50); 14 g.setColor(Color.BLACK); 15 g.setFont(new Font("SansSerif", Font.BOLD, 35)); 16 g.drawString("SLOW", 110, 110); 17 } 18 } A) (100, 100) B) (50, 50) C) (100, 50) D) (125, 125)