Page type HTML Transitionnal
Page type HTML Transitionnal (en langue française et pour une lecture de gauche à droite)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="fr" dir="ltr">
<head>
<title>Titre</title>
</head>
<body>
contenu
</body>
</html>
Page type HTML Transitionnal (en langue française et pour une lecture de gauche à droite) avec css externe
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="fr" dir="ltr">
<head>
<title>Titre</title>
<link rel="stylesheet" type="text/css" media="screen" href="feuille.css">
</head>
<body>
contenu
</body>
</html>
Page type HTML Transitionnal (en langue française et pour une lecture de gauche à droite) avec css externe par import
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="fr" dir="ltr">
<head>
<title>Titre</title>
<style type="text/css">
@import url(feuille.css);
</style>
</head>
<body>
contenu
</body>
</html>
Page CSS « feuille.css » :
/* page css "feuille.css" */
body{
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
