Computer Science, asked by ghazalanaheed91, 6 months ago

Consider the following scenario. There are two HTML pages, namely, Two.html and Four.html.

Each of these pages display a Mathematical Table in tabular form (no images), with Two.html

displaying table of 2 and Four.html displaying table of 4. Also, each page contain a hyperlink

to the other page. The pages are stored in a folder Tables as follows. Folder Tables contains

page Two.html and the folder Multiples_of_2. Folder Multiples_of_2 contains page

Four.html.

Implement the above mentioned two HTML pages.​

Answers

Answered by Anonymous
0

Answer:

The <table> tag defines an HTML table.

Each table row is defined with a <tr> tag. Each table header is defined with a <th> tag. Each table data/cell is defined with a <td> tag.

By default, the text in <th> elements are bold and centered.

By default, the text in <td> elements are regular and left-aligned.

==>> Example

A simple HTML table:

<table style="width:100%">

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Age</th>

</tr>

<tr>

<td>Jill</td>

<td>Smith</td>

<td>50</td>

</tr>

<tr>

<td>Eve</td>

<td>Jackson</td>

<td>94</td>

</tr>

</table>

Similar questions