gpt4 book ai didi

css - W3C 验证器错误(HTML5 初学者)

转载 作者:太空宇宙 更新时间:2023-11-04 08:13:24 26 4
gpt4 key购买 nike

所以我目前是 HTML 的初学者。我正在编写一个基本页面,但我正在尝试一个名为 hint.css 的 CSS 文件。

我不断收到此验证错误:

enter image description here

代码:

<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="hint.css" />
<head>
<meta charset="UTF-8"/>
<title>First HTML learning page</title>
</head>
<body>
<h2> HTML5, <span class="hint--bottom" aria-label="Web Dev!">Learning Page
V1.</span></h2>
<p>Using a combination of <span class="hint--bottom" aria-
label="HTML5,CSS3,JS,JQUERY,AJAX,PHP"><b>languages.</b></span>i will
acomplish a dynamic web site</p>
</body>
</html>

最佳答案

正如@Aaron K 在评论中提到的,样式表的链接标签必须在 head 内。请尝试以下操作:

<head>
<meta charset="UTF-8"/>
<title>First HTML learning page</title>
<link rel="stylesheet" href="hint.css" />
</head>

关于css - W3C 验证器错误(HTML5 初学者),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46085755/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com