IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

HTML Discussion :

Erreur et info sur w3c html et css


Sujet :

HTML

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    chomeur
    Inscrit en
    Juillet 2014
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : chomeur

    Informations forums :
    Inscription : Juillet 2014
    Messages : 128
    Points : 0
    Points
    0
    Par défaut Erreur et info sur w3c html et css
    bonjours j'ai une erreur sur mon css

    Erreur lors de l'analyse grammaticale. @font-face { font-family: 'icomoon'; src:url('fonts/icomoon.eot?afrei4'); src:url('fonts/icomoon.eot?#iefixafrei4') format('embedded-opentype'), url('fonts/icomoon.woff?afrei4') format('woff'), url('fonts/icomoon.ttf?afrei4') format('truetype'), url('fonts/icomoon.svg?afrei4#icomoon') format('svg'); font-weight: normal; font-style: normal; } a
    2022 Erreur lors de l'analyse grammaticale. /********************************************************************************************************************Fin du profil*****************************************************************************************************/ }

    28 La propriété -webkit-font-smoothing est une extension propriétaire inconnue a
    29 La propriété -moz-osx-font-smoothing est une extension propriétaire inconnue

    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
          @font-face
    	  {
    	  font-family: 'icomoon';
    	  src:url('fonts/icomoon.eot?afrei4');
    	  src:url('fonts/icomoon.eot?#iefixafrei4') format('embedded-opentype'),
    	      url('fonts/icomoon.woff?afrei4') format('woff'),
    		  url('fonts/icomoon.ttf?afrei4') format('truetype'),
    		  url('fonts/icomoon.svg?afrei4#icomoon') format('svg');
    	  font-weight: normal;
    	  font-style: normal;
    	  }
     
    	  [class^="icon-"]
    	  {
    	  font-family: 'icomoon';
    	  speak: none;
    	  font-style: normal;
    	  font-weight: normal;
    	  font-variant: normal;
    	  text-transform: none;
    	  line-height: 1;
    	  margin:0px 0px 0px 0px;/* top right bottom left */
    	  /* Better Font Rendering =========== */
    	  -webkit-font-smoothing: antialiased;
    	  -moz-osx-font-smoothing: grayscale;
    	  }

    et l'autre qui n'est pas trôt grave

    Result: 0 erreurs / 0 avertissements

    Info: W3c Online Validation

    Info: The Content-Type was “text/html”. Using the HTML parser.
    Info: Using the schema for HTML with SVG 1.1, MathML 3.0, RDFa 1.1, and ITS 2.0 support.
    line 54 column 30 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    line 69 column 48 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.

    je sais pour quoi ces infos
    line 54 column 30 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    line 69 column 48 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    mais pour les autres bules info je voulais savoir si on pouvais les faires disparaître

    car j'ai mis ca

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="fr" class="vbulletin_html">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>Document sans titre</title>
    <link rel="stylesheet" type="text/css" href="../../design/Basic/style.css">
    </head>
     
    <body>


    merci

  2. #2
    Membre confirmé
    Avatar de Jacques Beauregard
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2015
    Messages
    231
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Conseil

    Informations forums :
    Inscription : Mai 2015
    Messages : 231
    Points : 595
    Points
    595
    Par défaut
    Bonjour,
    Bon déjà une première remarque :
    margin:0px 0px 0px 0px;
    tu peux simplifier en ne spécifiant qu'une seule fois 0 (sans le px). Cela me supprime 4 warnings sur CSS Lint.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    line 54 column 30 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    line 69 column 48 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    il nous manque les lignes 54 et 69 du code HTML.

    Et enfin :
    28 La propriété -webkit-font-smoothing est une extension propriétaire inconnue a
    29 La propriété -moz-osx-font-smoothing est une extension propriétaire inconnue
    N'y prête pas attention : ce sont juste des hack pour les différents navigateurs.
    Il ne faut jamais prendre les gens pour des cons, mais il ne faut pas oublier qu'ils le sont...

    Le guide du débutant pour apprendre à programmer en Java - N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  3. #3
    Nouveau Candidat au Club
    Homme Profil pro
    chomeur
    Inscrit en
    Juillet 2014
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : chomeur

    Informations forums :
    Inscription : Juillet 2014
    Messages : 128
    Points : 0
    Points
    0
    Par défaut
    merci
    voilà la page w3c html et css

    https://validator.w3.org/unicorn/che...k=conformance#

    et ma page

    http://communautaire.legtux.org/modu.../connexion.php

    et sur firfox il met

    Result: 0 erreurs / 0 avertissements

    Info: W3c Online Validation

    Info: The Content-Type was “text/html”. Using the HTML parser.
    Info: Using the schema for HTML with SVG 1.1, MathML 3.0, RDFa 1.1, and ITS 2.0 support.
    line 62 column 30 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    line 77 column 48 - Info: Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
    et tu peut m'expliquer pour quoi il mets

    Info: W3c Online Validation

    Info: The Content-Type was “text/html”. Using the HTML parser.
    Info: Using the schema for HTML with SVG 1.1, MathML 3.0, RDFa 1.1, and ITS 2.0 support.

    je pense c'est bon mais je voudrais savoir si je dois amélioré un code par quoi

    voilà j'ai tout mis tu me diras si tout est bon même le bouton rechercher en haut

    a mon avis c'est bon mais tu me diras s'il faut modifier quelque truc

Discussions similaires

  1. Html et Css pour système réutilisable sur n'importe quel site
    Par dimalta5 dans le forum Mise en page CSS
    Réponses: 5
    Dernier message: 25/02/2008, 12h21
  2. [W3C] Cherche une info sur les règles Opéra
    Par Diabless6 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 21/07/2007, 20h03
  3. Info sur un message d'erreur de compilation
    Par rollergirl dans le forum Langage
    Réponses: 7
    Dernier message: 11/03/2007, 22h02
  4. [W3C] erreur de validation W3C HTML 4.01 Transitional
    Par durand2504 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 5
    Dernier message: 14/03/2006, 10h47
  5. [html ou css]nouvelle page en cliquant sur le lien
    Par henri68 dans le forum Mise en page CSS
    Réponses: 8
    Dernier message: 03/01/2006, 17h07

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo