💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 1.2 超文本和超链接 # 1.2 超文本和超链接 **超文本(Hypertext)**简而言之就是含有**超链接(Hyperlink)**的文本[1](#fn_1)。最常见的超文本就是HTML文本,如 ``` <html> <head> <title>GitHuber.cn</title> </head> <body> <a href="http://getfullstack.com/">Web全栈技术指南</a> </body> </html> ``` 其中, ``` <a href="http://getfullstack.com/">Web全栈技术指南</a> ``` 就是一个**超链接**。用户在浏览器中点击它,就会打开一个新的网页,其**URL**是: ``` http://getfullstack.com/ ``` > 1. 根据<https://en.wikipedia.org/wiki/Hypertext>:“Hypertext is text displayed on a computer display or other electronic devices with references (hyperlinks) to other text which the reader can immediately access...”[↩](#reffn_1 "Jump back to footnote [1] in the text.")