亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Create hyperlink

This example demonstrates:

How to create a hyperlink.

Example analysis:

##<a> tag defines a hyperlink, used to link from a page to Another page. The most important attribute of the

<a> element is the href attribute, which indicates the target of the link. The default appearance of links in all browsers is that unvisited links are underlined and blue, and visited links are underlined and purple. Active links are underlined and red

If you do not use the href attribute, you cannot use the following attributes: download, hreflang, media, rel, target and type attributes. The linked page usually displays in the current browser window, unless you specify another target (target attribute). Please use CSS to style the link.


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(ipnx.cn)</title> </head> <body> <p> <a href="http://ipnx.cn/index.html">php中文網(wǎng)</a> 是一個指向本網(wǎng)站中的一個頁面的鏈接。</p> <p><a href="http://ipnx.cn/">php中文網(wǎng)</a> 是一個指向萬維網(wǎng)上的頁面的鏈接。</p> </body> </html>
submitReset Code