File "liste01.html"

Full Path: /home/analogde/www/Liens/liste/liste01.html
File size: 535 bytes
MIME-type: text/html
Charset: utf-8


<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Elément HTML ul</title>

<style>

.puce{
  list-style-type : square;
}

</style>    

</head>
<body>
  <h1>L'élément HTML ul</h1>
  
  <ul>
    <li>Nager</li>
    <li>Pédaler</li>
    <li>Courir</li>
  </ul>
  
  <ul class="puce">
    <li>S'entrainer</li>
    <li>Manger</li>
    <li>Dormir</li>
  </ul>
</body>
</html>