下面代码帮我修复bug:第5行的标题标签应该是h1而不是h2。
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website!</h2>
<p>Here you will find all sorts of interesting things.</p>
</body>
</html>
修复后的代码如下:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>Here you will find all sorts of interesting things.</p>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/bpzb 著作权归作者所有。请勿转载和采集!