即使输出是正确的,也无法找出问题所在

我需要在 HTML 中以完全相同的方式重新创建该图像中的所有内容。我已经这样做了,但它说该段落丢失,链接丢失等。

要重新创建的图像在这里

到目前为止我的代码是这样的:

<!DOCTYPE html>

<html>

<head>

<title>This page definitely has a title</title>

</head>

<body>

<font face = "Times New Roman">

<h1> <font size="5">This is some text!A level 1 heading with a tooltip that says 'tooltip' (with the quotes)</h1> </font>

<p><font size="3"><b>This level 3 heading has a link to <a href="https://www.ww3schools.com">https://www.ww3schools.com</a></b></p></font>

<p><font size="3">This is just a regular paragraph.</p>

</font>

</body>

</html>

任何帮助将不胜感激,谢谢!


饮歌长啸
浏览 103回答 3
3回答

哈士奇WWW

您的结束标签似乎位于错误的位置,将结束符 /h1 放在 /font 之后你的第二行应该是 h3 而不是 ap,并将结束 /h3 放在 /font 之后在第三行将结束 /p 放在 /font 之后希望这可以帮助!

DIEA

尝试这个<!DOCTYPE html><head><title>This page definitely has a title</title><style>body {&nbsp; font-family: "Times New Roman", Times, serif;}</style></head><body><p>This is some text!A level 1 heading with a tooltip that says 'tooltip' (with the quotes)</p><p>This level 3 heading has a link to <a href="https://www.ww3schools.com">https://www.ww3schools.com</a></p><p>This is just a regular paragraph.</p></body></html>

largeQ

我唯一的额外输入是,通过正确缩进代码,它有助于尽早发现这些问题,这样您就可以看到封装了哪些代码块。也不需要顶部额外的 HTML 标签。<!DOCTYPE html><head><title>This page definitely has a title</title></head>&nbsp; &nbsp; <body>&nbsp; &nbsp; <font face="Times New Roman">&nbsp; &nbsp; &nbsp; &nbsp; <h1>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size="5">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This is some text!A level 1 heading with a tooltip that says 'tooltip' (with the quotes)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </font>&nbsp; &nbsp; &nbsp; &nbsp; </h1>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size="3">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This level 3 heading has a link to <a href="https://www.ww3schools.com">https://www.ww3schools.com</a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </font>&nbsp; &nbsp; &nbsp; &nbsp; </p>&nbsp; &nbsp; &nbsp; &nbsp; <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font size="3">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This is just a regular paragraph.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </font>&nbsp; &nbsp; &nbsp; &nbsp; </p>&nbsp; &nbsp; </font>&nbsp; &nbsp; </body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5