HTML and CSS Reference
In-Depth Information
<tr>
<td width="150">
<p>Home<br /><a href="about.html">About</a><br />
<a href="services.html">Services</a><br />
<a href="products.html">Products</a></p>
</td>
<td>&nbsp;
</td>
<td>
<p>More than just another web development firm, Trillium
Media Design strives to celebrate creativity and the efficient
flow of information.</p>
<p> We aren&#39;t satisfied until every site we build is
the best in its class.</p>
</td>
</tr>
</table>
</body>
</html>
2. Fill in the Missing Code. This Web page should have a table with a background color
of #cccccc and a border. Some CSS properties and values, indicated by " _ " , are
missing. Fill in the missing code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>CircleSoft Web Design</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
table { "_":"_";
"_":"_";
}
</style>
</head>
<body>
<h1>CircleSoft Web Design</h1>
<table>
<caption>Contact Information</caption>
<tr>
<th>Name</th>
<th>Phone</th>
</tr>
<tr>
<td>Mike Circle</td>
<td>920-555-5555</td>
</tr>
</table>
</body>
</html>
Search WWH ::




Custom Search