我正在使用随机文本编辑器并将页面保存为.html,并且“gizmodo的链接无法点击
<!doctype html>
<html>
<head>
<title>This is the title</title>
</head>
<body
<a href="http://www.gizmodo.com">This is the link for gizmodo</a>
</body>
</html>
<!--"a" stands for anchor-->
答案 0 :(得分:2)
您错过了<body>
代码的结束括号。这将导致<a>
标记的HTML格式错误,无法按预期工作。
<body <-- HERE
<a href="http://www.gizmodo.com">This is the link for gizmodo</a>
</body>
答案 1 :(得分:1)
正文属性为<body> </body>
而不是<body </body>
。您在开始标记上缺少结束>
。
这是经过翻新的代码:
<!doctype html>
<html>
<head>
<title>This is the title</title>
</head>
<body> <!-- THIS IS WHERE YOU FORGOT THE ">" -->
<a href="http://www.gizmodo.com">This is the link for gizmodo</a>
</body>
</html>
<!--"a" stands for anchor-->