5542 sujets

Sémantique web et HTML

Bonjour
j'apprend le Html et je suis confronté a un problème que je ne comprend pas !
Voici le code html de ma page de test :
<!DOCTYPE html>
<hmtl lang="fr">
    <head>
        <title>Mon super site web</title>
        <meta charset="utf-8">
        <meta name="description" content="Apprendre le Html.">        
    </head>
    <body> 
        <H1>Home page de mon super site web</H1>        
        <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum pariatur magni dolore. Aspernatur nisi quis delectus, dolore praesentium ullam culpa quod nobis optio, corporis voluptatem. Nisi quisquam beatae qui aperiam.</p>        
    </body>  
</hmtl>


Lorsque je le test sur la page : https://validator.w3.org/
Voici le résultat
upload/1569421633-77188-capture.png
Une tripotée d'erreurs ???

Si on observe la seconde erreur :
Error: Element head is missing a required instance of child element title.

From line 1, column 16; to line 2, column 16

TYPE html>?<hmtl lang="fr">? <

Content model for element head:
If the document is an iframe srcdoc document or if title information is available from a higher-level protocol: Zero or more elements of metadata content, of which no more than one is a title element and no more than one is a base element.
Otherwise: One or more elements of metadata content, of which exactly one is a title element and no more than one is a base element.


Si je comprend bien il manque l’élément <title> dans le <head> ? sauf que :
<head>
        <title>Mon super site web</title>

il est bien présent.

Toutes les erreurs relevées me semble fausse ?
Pouvez vous m’éclairer.
Merci d'avance
salut

c'est du html pas du hmtl
donc
<html lang="fr">...</html>
au lieu de
<hmtl lang="fr">...</hmtl>

a+
Meilleure solution