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.)
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:
‘
), they cause errors<Title>
into all lowercase <title>
'
and />
for the <img>
.I would like to thank you for your immediate feedbacks @zystvan and @leonhard_wettengmx_n.