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 27 28 29 30 31 32 33 34 35 36 37 38 39
   | <!DOCTYPE html>
<html lang="fr"> <!-- ABaseHTML.html -->
 
	<head>
		<meta http-equiv="content-type" content="text/html"; charset="utf-8"/>
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>Minimum pour page HTML</title>
 
		<style>
.marge {
margin-left: 5em;
}
.margeTriple {
margin-left: 15em;
}
                </style>
 
		<script>
                        'use strict'; // force la déclaration des variables
                        //********************************************************************************
                        //--------------------------------------------------------------------------------
 
                </script>
 
	</head> 
	<body>	<!-- ........................................................................................................... -->
 
<p>
   Un début de texte <br/>
   <span class="marge">un texte plus loin (espace de 5 caractères)</span><br/>
   <span class="marge"><span class="marge"></span>un texte encore plus loin</span><br/>
   <span class="margeTriple">un texte plus loin (espace de 15 caractères)</span>
</p>
		<script> // ........................................................................................................ --> 
 
                </script> <!-- ..................................................................................................... -->
	</body>	<!-- ........................................................................................................... -->
 
</html> | 
Partager