Example sharing of anchor tag usage in HTML

Example sharing of anchor tag usage in HTML
Anchor tag usage:
Linking to a specific location in the same document is called an anchor link.
The method of using an anchor is to select a target location and create a positioning tag, which is determined by the value of the name attribute of the <a> tag.

Anchor tag name. The format is:
<a name="Anchor Tag Name">
The name attribute is used to create a named anchor. When using a named anchor, we can create a pointer that jumps directly to a page.

The content of the article can be linked to a specific part without requiring the reader to scroll to find the part he/she needs.
Following is the syntax to create a named anchor:
<a name="label">Text to be displayed</a>
The name attribute is used to create a named anchor. The anchor name can be named with any text you like.
The following line defines a named anchor:
<a name="tips">Useful Tips Section</a>

Then create a link to this target tag anywhere on the web page. The link address name created in the title should be the same as the positioning tag name, with a "#" sign in front. The format is:
<a href="#locator tag name">
A named anchor is displayed no differently than an ordinary link.
To link directly to the "Highlights" section, you generally need to add the # symbol and the anchor name to the end of the requested URL, like this:
<a href="Jump'>http://www.w3schools.com/html_links.asp#tips">Jump to the Useful Tips Section</a>

The syntax for anchor links available inside the file "html_links.asp" (inside a page) is as follows:
Jump to the Useful Tips Section

It’s too tiring to read the text description: Here is a simple example for everyone on 123WORDPRESS.COM:


Tip: You can modify some of the code before running

Copy it to your page and try it out to see if it works!

<<:  Implementing password box verification information based on JavaScript

>>:  Design theory: the basics of font design

Recommend

Detailed installation process of mysql5.7.21 under win10

This article shares the installation of MySQL 5.7...

Analysis and summary of the impact of MySQL transactions on efficiency

1. Database transactions will reduce database per...

Share 5 helpful CSS selectors to enrich your CSS experience

With a lot of CSS experience as a web designer, we...

Using react-beautiful-dnd to implement drag and drop between lists

Table of contents Why choose react-beautiful-dnd ...

Detailed explanation of JavaScript upload file limit parameter case

Project scenario: 1. Upload file restrictions Fun...

Four data type judgment methods in JS

Table of contents 1. typeof 2. instanceof 3. Cons...

Detailed explanation of how to exit Docker container without closing it

After entering the Docker container, if you exit ...

Summarize the commonly used nth-child selectors

Preface In front-end programming, we often use th...

Specific method to add foreign key constraints in mysql

The operating environment of this tutorial: Windo...

Convert XHTML CSS pages to printer pages

In the past, creating a printer-friendly version ...

Implement MySQL read-write separation and load balancing based on OneProxy

Introduction Part 1: Written at the beginning One...

MySQL 5.7.17 installation graphic tutorial (windows)

I recently started learning database, and I feel ...

How to configure Jupyter notebook in Docker container

Jupyter notebook is configured under the docker c...

Summary of MySQL database usage specifications

Introduction: Regarding MySQL database specificat...