[an error occurred while processing this directive] [an error occurred while processing this directive]

HTML5 – Modèle minimal

Voici un exemple de la structure minimale d’une page en HTML5


<!doctype html>
<html lang='fr'>
<head>
    <meta charset='utf-8'>
    <title>Modèle minimal</title>
    <script  src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/
jquery.min.js'></script>
    <script  type='text/javascript' src='script.js'></script>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
</body>
</html>


x


<!doctype html>
<html lang='fr'>
<head>
    <meta charset='utf-8'>
    <title>Modèle minimal</title>
    <script  src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/
jquery.min.js'></script>
    <script  type='text/javascript' src='script.js'></script>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
</body>
</html>

Publier par Michel PIALLIER dans HTML5 - Structure de base Commentaires fermés sur HTML5 – Modèle minimal
[an error occurred while processing this directive]
[an error occurred while processing this directive]
[an error occurred while processing this directive]