002_special_char.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>special char</title>
</head>
<body>
<a href="http://www.baidu.com">ba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;idu</a>
<!--&nbsp : refers to a space char-->
<!--&gt; : refers to a >-->
<!--&lt; : refers to a <-->
<!--There are a lot of this kind of special char and you can find on the internet-->
</body>
</html>
原文地址:https://www.cnblogs.com/liujun5319/p/9657873.html