Home  >  Article  >  Web Front-end  >  How to open a new web page in html

How to open a new web page in html

王林
王林Original
2021-06-16 14:21:1619807browse

htmlThe way to open a new web page is to add the target attribute to the hyperlink and set the attribute value to [_blank]. When we click on a hyperlink with the target attribute set, a new web page will be opened in a new window.

How to open a new web page in html

The operating environment of this article: windows10 system, html 5, thinkpad t480 computer.

If we want to implement it, opening a new page in a page can be done by setting the target attribute for the hyperlink.

Let’s first briefly introduce the target attribute.

3499910bf9dac5ae3c52d5ede7383485 The target attribute of the tag specifies where to open the linked document.

Syntax:

<a target="_blank|_self|_parent|_top|framename">

Attribute value:

  • _blank Open the linked document in a new window.

  • _self Default. Open the linked document in the same frame.

  • _parent Open the linked document in the parent frame set.

  • #_top Open the linked document in the entire window.

  • #framename Open the linked document in the specified frame.

Sample code:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(www.php.cn)</title>
</head>
<body>

<p>在新窗口打开链接: 
	<a href="//www.php.cn" target="_blank">访问php中文网!</a>
</p>
</body>
</html>

You can download the above code for testing. You will find that when you click to access the php Chinese website, a new page.

Related recommendations: Programming Video

The above is the detailed content of How to open a new web page in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn