1.2 超文本和超链接
超文本(Hypertext)简而言之就是含有超链接(Hyperlink)的文本1。最常见的超文本就是HTML文本,如
<!DOCTYPE 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...” ↩