<g stroke-width="8" stroke-linecap="round">

  <!-- 5 tracés lignes horizontales
  (disposés de haut en bas) -->
  <path d="M24 32 h80" stroke="coral"/>
  <path d="M24 48 h80" stroke="mediumOrchid"/>
  <path d="M24 64 h80" stroke="crimson"/>
  <path d="M24 80 h80" stroke="deepSkyBlue"/>
  <path d="M24 96 h80" stroke="limegreen"/> 

  <!-- groupe de 5 tracés lignes verticales
  (disposés de gauche à droite) -->
  <g stroke-opacity="0.5">
    <path d="M32 24 v80" stroke="coral"/>
    <path d="M48 24 v80" stroke="mediumOrchid"/>
    <path d="M64 24 v80" stroke="crimson"/>
    <path d="M80 24 v80" stroke="deepSkyBlue"/>
    <path d="M96 24 v80" stroke="limegreen"/>
  </g> 
 
</g>