Help needed with HTML example

Could you please help me find the errors in the html example below? It is for a course at my bachelor.

(Note: We can assume that error.png the image in the same folder as the file is,
and the references to the DOCTYPE and namespace are correct.)

@dafff,
Change the order

 <body>
 </head>

into

 </head>
 <body>

Encapsulate line 10 & 11 into a paragraph-Tag

    <p>Hier kommt ein einfaches Beispiel. <br>
           Leider entspricht es nicht dem HTML-Standard</p>

Hi Dafff,

After you do what @leonhard_wettengmx_n said, you need to:

  • Stop using smart quotes (), they cause errors
  • Change <Title> into all lowercase <title>
  • You’ll probably need a space between ' and /> for the <img>.

I would like to thank you for your immediate feedbacks @zystvan and @leonhard_wettengmx_n.

1 Like