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

HTML link

I believe everyone is familiar with hyperlinks. I don’t know how many I click on every day. A hyperlink can be a word, a word, a group of words, or an image. You can click on these contents to jump to a new document or a certain part of the current document. In the previous example, we simply used the < a> tag, used characters as hyperlinks on the Internet, and also used < a> to implement the function of sending emails. What we are going to talk about below are all about the attributes of the < a> tag

We will explain HTML links in detail:

1. Add a hyperlink to the text

First of all, let’s review the simplest link usage, which is to directly add links to text to web pages and other HTML files.

HTML content is as follows

<html>
<body>
<p>let's have an example</p>
<p>
<a href="http://ipnx.cn">php中文網(wǎng)</a>
</p>
</body>
</html>

This is a screenshot of myself in the environment:

QQ截圖20161010173757.png

This is the simplest hyperlink, next Let's link this HTML file to another HTML file. (In the same folder, add another HTMl file), and then the following is the HTML content and results

QQ截圖20161206103150.png

After clicking in (the content of the other HTML will no longer be displayed) :

QQ截圖20161206103248.png

2. Add a link to the picture

QQ截圖20161010174737.png

This It is a screenshot of the content and results:


QQ截圖20161010174741.png

After clicking on the picture, the link is successful:

QQ截圖20161010174747.png

Continuing Learning
||
<html> <body> <p>let's have an example</p> <p> <a href="http://ipnx.cn">php中文網(wǎng)</a> </p> </body> </html>
submitReset Code