Web Beginner Notes 3-html practical elements 2

Source: Internet
Author: User

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:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.