Outils pour utilisateurs

Outils du site


web:html5:introduction

HTML5 : Introduction

Structure de base

<!doctype html>
<html>
    <head>
       <title>Titre</title>
    </head>
    <body>
        I like apples and oranges.
    </body>
</html>

Pour le support de plus vieux navigateurs:

<!doctype html>
 
<html lang="en">
<head>
  <meta charset="utf-8">
 
  <title>Template HTML5</title>
 
  <link rel="stylesheet" href="css/styles.css?v=1.0">
 
  <!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
</head>
 
<body>
  <script src="js/scripts.js"></script>
</body>
</html>
web/html5/introduction.txt · Dernière modification : 2022/02/02 00:42 de 127.0.0.1