Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:
Describe your issue in detail here.

I put lang=“en” into the htme element but it still requires to do so.
How can I go through this case?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <meta charset="UTF-8">
  <title>Miso Soup</title>
<body>
  <h1>Miso Soup Recipe</h1>
  <p>Japanese Traditional Soup</p>
  <h2>Ingredients</h2>
  <ul>
    <li>Water</li>
    <li>Umami</li>
    <li>Miso Paste</li>
    <li>Seaweed</li>
    <li>Tohu</li>
  </ul>
  <h2>Instructions</h2>
  <ol>
    <li>Boil the water</li>
    <li>Put Umami into the water</li>
    <li>Put Seaweed into the water</li>
    <li>put Miso Paste into the pod</li>
    <li>Put Tohu into the pod</li>
  </ol>
  <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Miso Soup">
</body>
</htme>

Your mobile information:

iPad - iPadOS26.4

Challenge: Build a Recipe Page - Build a Recipe Page

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

check the closing tag

Hi @y891162,

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

And until you’re more comfortable with HTML, you can use this HTML Validator to check your code.

Happy coding