In HTML, Read the code and then answer questions after it: <html> <head><title>F
ID: 3919730 • Letter: I
Question
In HTML,
Read the code and then answer questions after it:
<html>
<head><title>First Web Page</title></head>
<body bgcolor="#310AFC" >
<table border="1" width="700" height="600"
<tr>
<td ><font size="4" color="blue">This is Cell 1</font> </td>
<td bgcolor="#FCBB8C"><h2 align="left">This is a heading</h2></td>
<td><font size="4" color="red">There is a list below</font>
<ul><li>Item 1</li><li>item 2</li></ul>
</td>
<td><img src="2.jpg" width="100" height="100" border="1" /></td>
</tr>
<tr>
<td>This is <a href="http://www.yahoo.ca">a link to Yahoo</a></td>
<td><table border = "1" width="190" height="110" bgcolor="#FD8B08">
<tr><td>inside 1</td><td>inside 2</td></tr>
<tr><td colspan="2">inside 31</td></tr>
</table> </td>
<td>
<dl><dt>URL</dt><dd>Universal Resource Locator. A web address</dd> <dt>XHTML</dt><dd>A language used to create a <a href="detail.html">hypertext</a> document for the Web</dd>
</dl>
</td>
<td><font face="Helvetica" size="5" color="#FADB08">This is cell 8 <br /> <blockquote> Rough decision tables</blockquote>
<blockquote> Rough decision tables were originally proposed by Pawlak. </blockquote> <blockquote> In recent years, the hierarchies have been successfully applied to many research areas. </blockquote></font>
</td>
</tr>
</table>
</body>
</html>
bgcolor="#1A88BC" align="right">
3.6. Which statement about the list(s) in the table is true?
a). There is one ordered list in the table.
b). There are two lists, an order list and a unordered list in the table. c). The table only has a unordered list.
d). The table has a definition list.
3.7. Which statement about the link(s) in the table is wrong?
a). There are two links in the table.
b). One of links is a relative URL.
c). All of links are absolute URL.
d). One of links is a link to a webpage in the same folder as the webpage having this table.
3.8. Which statement about the image in the table is correct?
a). Its actual size is 100 x 100.
b). Its border is 1 millimetre.
c). It is stored in a subfolder.
d). It is a bitmapped graphics.
3.9. The width of this table is_________.
a). 700 pixels
b). 700 pts
c). 700 millimetres
d). 700 bits
3.10. If you define a definition term, the tag is _________. a). <ul></ul>
b). <br></br>
c). <dd></dd>
d). <tr></tr>
Explanation / Answer
3.6 Answer is option c). The table only has a unordered list.
The unordered list mentioned in the code is
<ul><li>Item 1</li><li>item 2</li></ul>
3.7 Answers are options a and d
a). There are two links in the table.
d). One of links is a link to a webpage in the same folder as the webpage having this table.
<a href="detail.html">hypertext</a>
<a href="http://www.yahoo.ca">a link to Yahoo</a>
3.8
a). Its actual size is 100 x 100.
The width and heigth are given as 100 and 100.
<img src="2.jpg" width="100" height="100" border="1" />
3.9
a). 700 pixels
3.10 c). <dd></dd>
a). <ul></ul> - unordered list
b). <br></br> - break line
c). <dd></dd> - definition term
d). <tr></tr> - table row
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.