Q:

Create the XHTML markup that produces the table shown below. Use em and strong tags as necessary

belongs to collection: HTML + CSS Examples

0

Create the XHTML markup that produces the table shown below. Use em and strong tags as necessary

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<html>
<head>
<style>
table
{
border-collapse: collapse;
}
      td
      {
       border-style:double solid;
      }
</style>
</head>
<body>
<div style="width:1366;height:768;"><table><tr>
<td width="650" ><br><h1 style="font-size:26;">Objectives</h1>
<strong style="font-size:20;"><ul><li>To be able to create tables with rows and columns of data.
<li>To be able to control the display and formatting of tables.
<li>To be able to create and use forms.
</ul></strong><br>
<em>Yeah, from the table of my memory I will wipe away all trival found records </em><br>
William Shakespeare .
</td><td>
<img src="camel.gif" style="float:right;width:400;height:500;">
</td></tr></table></div>
</body></html>

 

Output:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Create a Box Model using CSS (Cascading Style Shee... >>
<< Design a web page using CSS (Cascading Style Sheet...