How to insert a link in html

How to insert a link in html

Each web page has an address, identified by a URL (). Usually when creating links within a website, relative addresses are used.

Internal Links

XML/HTML CodeCopy content to clipboard
  1. <   href = "Link address"   target = "How to open the target window (-self,-blank,-top,-parent)" > Description text </a> Anchor link

The same web page can have an unlimited number of anchors, but there cannot be two anchors with the same name.

XML/HTML CodeCopy content to clipboard
  1. <!--Create anchor point-->   
  2. <   name = "anchor name" > </ a >   
  3. <!--Link to the same page anchor-->   
  4. <   href = "#anchor name" > </ a >   
  5. <!--Link different page anchors-->   
  6. <   href = "link file address#anchor name" > </ a >   

Link to Email

<a href="mailto:email address"></a>

Link to ftp

<a href="ftp://ftp address"></a>

Link to telnet

<a href="telnet://address"></a>

Download File

<a href="File address"></a>

The above method of implementing HTML link insertion is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  How to remove the header from the element table

>>:  A brief analysis of MySQL's WriteSet parallel replication

Recommend

An in-depth introduction to React refs

1. What is Refs is called Resilient File System (...

Complete steps to upgrade Nginx http to https

The difference between http and https is For some...

Some pitfalls of JavaScript deep copy

Preface When I went to an interview at a company ...

Vue implements infinite loading waterfall flow

This article example shares the specific code of ...

MySQL date and time addition and subtraction sample code

Table of contents 1.MySQL adds or subtracts a tim...

How to set default value for datetime type in MySQL

I encountered a problem when modifying the defaul...

HTML line spacing setting methods and problems

To set the line spacing of <p></p>, us...

How to import, register and use components in batches in Vue

Preface Components are something we use very ofte...

Web Design Tutorial (8): Web Page Hierarchy and Space Design

<br />Previous article: Web Design Tutorial ...

Design reference WordPress website building success case

Each of these 16 sites is worth reading carefully,...

Detailed tutorial on running Tomcat in debug mode in IDEA Maven project

1. Add the following dependencies in pom.xml <...

Sample code for implementing rolling updates of services using Docker Swarm

1. What is Docker Swarm? Docker Swarm is a cluste...