Compare commits

...

2 Commits

View File

@ -3,10 +3,16 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML 属性</title> <title>HTML 属性(修复版)</title>
</head> </head>
<body> <body>
<a href="www.yuuko1969.com">主站</a> <!-- 补充 http:// 协议头 -->
<a href="www.yuuko1969.com" target="_blank"">主站</a> <a href="http://www.yuuko1969.cn">主站</a>
<a href="http://jdy.yuuko1969.cn" target="_blank">京东云</a>
<a href="http://www.yuuko1969.cn" target="_self">主站</a>
<a href="http://jdy.yuuko1969.cn" target="_top">京东云</a>
<a href="http://www.yuuko1969.cn" target="_parent">主站</a>
<a href="http://jdy.yuuko1969.cn" target="_blank" rel="noopener">京东云</a>
<a href="http://www.yuuko1969.cn" target="_blank" rel="noreferrer">主站</a>
</body> </body>
</html> </html>