Introduction to HTML method of opening link files using hyperlinks

Introduction to HTML method of opening link files using hyperlinks

a and href attributes HTML uses <a> to represent hyperlinks, which are called anchors in English.
<a> can point to any file source: an HTML page, a picture, a video file, etc. Usage is as follows:
<ahref="url">Link display text</a> Click the content in <a></a> to open a link file, and the href attribute indicates the path of the link file.
For example, if you link to the homepage of jb51.net, you can express it like this:
<ahref="https://www.jb51.net">Dotte Software Station jb51.net Home Page</a>target attribute Using the target attribute, you can open the link file in a new window.
<ahref="https://www.jb51.net"target=_blank>Dotte Software Station jb51.net Home Page</a>
title attribute Using the title attribute, you can display the text annotation of the hyperlink when the mouse hovers over the hyperlink.
<ahref="https://www.jb51.net"title="Dotte Software Station Web Tutorial and Code Chinese Site">Dotte Software Station Website</a>If you want the comment to display on multiple lines, you can use as a line break.
<ahref="https://www.jb51.net"title="Dotte Software Station Web Tutorial and Code Chinese Site">Dotte Software Station Website</a>
name attribute Using the name attribute, you can jump to a specified part of a file.
To use the name attribute, set a pair. One is to set the name of the name, and the other is to set an href pointing to the name:
<ahref="#C1">See Chapter 1</a><aname="C1">Chapter 1</a>
The name attribute is often used to create a table of contents for a large document. A link is created for each chapter and placed at the beginning of the file, and the Name attribute is set at the beginning of each chapter. When a user clicks on a link to a chapter, the content of that chapter is displayed at the top.
If the browser cannot find the part specified by Name, it will display the beginning of the article without reporting an error.
Link to email address On the website, you will often see a "Contact Us" link. Once you click this link, it will trigger your email client, such as Outlook Express, and then display a new email window. This function can be achieved using <a>.
<ahref="mailto:[email protected]">Contact Sina</a>

<<:  5 solutions to CSS box collapse

>>:  jenkins+gitlab+nginx deployment of front-end application

Recommend

TypeScript installation and use and basic data types

The first step is to install TypeScript globally ...

Summary of 11 amazing JavaScript code refactoring best practices

Table of contents 1. Extracting functions 2. Merg...

Linux lossless expansion method

Overview The cloud platform customer's server...

Implementation of positioning CSS child elements relative to parent elements

Solution Add position:relative to the parent elem...

Hbase installation and configuration tutorial under Linux

Table of contents Hbase installation and configur...

Let's talk about the LIMIT statement in MySQL in detail

Table of contents question Server layer and stora...

How to perform query caching in MySQL and how to solve failures

We all know that we need to understand the proper...

Docker Tutorial: Using Containers (Simple Example)

If you’re new to Docker, take a look at some of t...

Example of using CSS3 to create Pikachu animated wallpaper

text OK, next it’s time to show the renderings. O...

MySQL derived table (Derived Table) simple usage example analysis

This article uses an example to describe the simp...

How to add rounded borders to div elements

As shown below: CSS CodeCopy content to clipboard...

Detailed explanation of the use of React.cloneElement

Table of contents The role of cloneElement Usage ...

How to create a MySQL master-slave database using Docker on MacOS

1. Pull the MySQL image Get the latest MySQL imag...