0% found this document useful (0 votes)
2 views2 pages

Text

The document contains an HTML structure for a webpage displaying a table of companies with their respective contacts and countries. The table is styled with CSS for better readability, featuring alternating row colors and borders. It includes six companies from different countries, such as Germany, Mexico, and Canada.

Uploaded by

Karla Acosta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Text

The document contains an HTML structure for a webpage displaying a table of companies with their respective contacts and countries. The table is styled with CSS for better readability, featuring alternating row colors and borders. It includes six companies from different countries, such as Germany, Mexico, and Canada.

Uploaded by

Karla Acosta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}

td,th{
border: 1px solid #dddddd;
text-align:left;
padding: 8px;
}

tr:nth-child(even){
background-color: #dddddd;
}
</style>
</head>
<body>

<h2> HTML Table</h2>

<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Contry</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang </td>
<td>Mexico</td>
</tr>
<tr>
<td>Ernst Handel</td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
<tr>
<td>Island Trading</td>
<td>Helen Bennett</td>
<td>UK</td>
</tr>
<tr>
<td>Laughing Bacchus Winecellars</td>
<td>Yoshi Tannamuri</td>
<td>Canada</td>
</tr>
<tr>
<td>Magazzine Alimentari Riuniti</td>
<td>Giovanni Roveli</td>
<td>Italy</td>
</tr>
</table>

</body>
</html>

You might also like