HTML Link-Name property
The Name property specifies the names of anchors (anchor).
You can use the Name property to create bookmarks in an HTML page.
Bookmarks are not displayed in any special way and are not visible to the reader.
When using a named anchor (named anchors), we can create a link that jumps directly to the named anchor, such as a section in the page, so that the user doesn't have to scroll the page constantly to find the information they need.
First, we name the anchor in the HTML document (Create a bookmark):
<a name= "Tips" > Basic considerations-Helpful tips </a>
We then create a link to the anchor in the same document:
<a href= "#tips" > Helpful tips </a>
HTML CREATE TABLE
Instance:
<body>
<p> Each table starts with the table label. </p>
<p> each table row starts with the TR label. </p>
<p> Each table data is started by the TD label. </p>
<table border= "1" >
<tr>
<td>100</td>
</tr>
</table>
<table border= "1" >
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
</table>
<table border= "1" >
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>
</body>
Show Results: