Build a Recipe Page - 创建一个食谱页面

告诉我们发生了什么:

创建一个食谱页面

,我的拼写没有错误,去网上查验过,但是检查代码时一直报错

到目前为止你的代码

<!DOCTYPE html>
<html lang="en">
  <head>
  <meta charest="utf-8">
    <title>d</title>
    </head>
    <body>
      <h1>d</h1>
      <h2>d</h2>
      <ul>
        <li>d</li>
        <li>d</li>
        <li>d</li>
        <li>d</li>
        </ul>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="图片与原文毫不相关">
<h2>d</h2>
<ol>
  <li>d</li>
  <li>d</li>
  <li>d</li>
</ol>
      </body>

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36

挑战信息:

Build a Recipe Page - 创建一个食谱页面

GitHub Link: i18n-curriculum/curriculum/challenges/chinese/blocks/lab-recipe-page/668f08ea07b99b1f4a91acab.md at main · freeCodeCamp/i18n-curriculum · GitHub

Double check your closing tags.

It should be charset over here.

Welcome to the forum @191207,

Please review this theory lecture about the importance of using an HTML Boilerplate to start your projects.

Remember that most HTML elements, with the exception of void elements, require both a starting tag and an ending tag.

I highly recommend you format your code (You can do that in the fCC editor by right-clicking and selecting “Format Document”). It will make is so much easier for you to find missing end tags, etc. going forward.

Carefully review the user stories to make sure you have implemented them exactly as asked.

Happy coding