超链接问题
我想写一个快速转到html5速查宝典的程序不知道哪出了问题:<!DOCTYPE html>
<html>
<head>
<title>web开发速查宝典</title>
<body>
<h1>web开发速查宝典<h1>
<a href="https://man.ilovefishc.com/html">html5</a>
</html> 标签不配对 本帖最后由 不二如是 于 2020-5-20 07:57 编辑
代码格式有问题哦,请注意标签的“封闭”。
正确:
<!DOCTYPE html>
<html>
<head>
<title>web开发速查宝典</title>
</head>
<body>
<h1>web开发速查宝典</h1>
<a href="https://man.ilovefishc.com/html5/">html5</a>
</body>
</html>
页:
[1]