Question: You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading?
A
a. <tr>
<th>Customer Name</th>
<th colspan=3>Contact</th>
</tr>
B
b. <tr>
<th>Customer Name</th>
<th cellpadding=3>Contact</th>
</tr>
C
c. <tr>
<th>Customer Name</th>
<th rowspan=3>Contact</th>
</tr>
D
d. <tr>
<th>Customer Name</th>
<th cellspacing=3>Contact</th>
</tr>
Question: You specified a base tag and anchors as follows:
1. <base target="_blank">
2. <a href="http://www.yahoo.com">Yahoo</a>
3. <a href="http://www.google.com" target="_top">Google</a>
Which of the following is true for the above code?
Question: On one of your Web pages named Listing.html, you specified a target like this:
<a name="target4">Old Listing</a>
How will you make a link to the above target?
A
<a url="#target4">Check Old Listing as well</a>
B
<a href="#target4">Check Old Listing as well</a>
C
<link url="target4">Check Old Listing as well</link>
D
<a href="Listing.target4">Check Old Listing as well</a>