HTML Codes
HTML Codes
<style>
body {
background-image: url("Background.jpg");
}
</style>
The link text is the part that will be visible to the reader.
Clicking on the link text, will send the reader to the specified
URL address.
Tables
A table in HTML consists of table cells inside rows and columns.
Each table cell is defined by a <td> and a </td> tag.
Everything between <td> and </td> are the content of the table cell.
Each table row starts with a <tr> and ends with a </tr> tag.
Sometimes you want your cells to be table header cells. In those cases use the <th> tag instead of
the <td> tag:
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
</table>