To describe slides :
name="slideselector" attributecontent attribute contain a CSS selector matching all slide elementsFor instance: <meta name="slideselector" name="div.slide" />
To describe the title of a slide:
name="titleselector" attributecontent attribute contain a CSS selector matching the title of the slide in the context of a slideFor instance: <meta name="titleselector" name="h4" />
It's possible to define steps in slides:
name="stepselector" attributecontent attribute contain a CSS selector matching the steps in the context of a slideFor instance: <meta name="stepselector" name="li.step" />
Use 'projection' styles that will be enabled only in FullerScreen mode:
    @media projection {
      body { background-color: red;
      }
      div.slide {
        position: fixed;
        left: 5cm;
        right: 2cm;
        top: 1cm;
        bottom: 1cm;
        background: #d0d0d0;
      }
  How to highlight the current step ?
For instance:
  @media projection {
    .__FSstep { color: red; }
  }
  <div class="slide"><h4>Slides</h4>
  <div class="slidecontent">
    <p>To describe slides :</p>
    <ul>
      <li>Insert a new META element in the HEAD of your
          document</li>
      <li>Make it have a <code>name="slideselector"</code>
          attribute</li>
      <li>Make the <code>content</code> attribute contain
          a CSS selector matching all slide elements</li>
    </ul>
   <p>For instance: <code><meta name="slideselector"
      name="div.slide" /></code></p>
  </div>
</div>
  

