JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css">
<html>
  <head>
    <title>LJMMM 0.1 Specification</title>
  </head>
  <body>
    <h1>LJMMM 0.1 Specification</h1>
    
    <div class="section">
      <a id="table"></a>
      <h2>Table of contents</h2>
      <ul>
        <li><a href="#status">Authors and Status</a></li>
        <li><a href="#introduction">Introduction</a></li>
        <li><a href="#example">Example</a></li>
        <li><a href="#structure">Document Structure</a></li>
        <li><a href="#field">LJMMM Field Language</a></li>
      </ul>
    </div>
    
    <div class="section">
      <a id="status"></a>
      <h2>Authors and Status</h2>
      <p>
        <ul>
          <li>01/05/2013: initial proposal</li>
        </ul>
      </p>
      <p>
        Unapproved LabJack MODBUS Map Markup 0.1 notation spec written by Sam Pottinger and pending review of Rory Olsen and Caleb Rust.
      </p>
    </div>
    
    <div class="section">
      <a id="introduction"></a>
      <h2>Introduction</h2>
      <p>
        LabJack MODBUS Map Markup notation standardizes the way that MODBUS maps are defined for <a href="https://labjack.com/">LabJack</a> devices. LJMMM imposes further restrictions on <a href="http://www.json.org/">JSON</a> constants files so that, in addition to improving internal company coordination, they can be read by certain LabJack software including <a href="https://github.com/Samnsparky/ljsimpleregisterlookup">Simple Register Lookup</a>.
      </p>
    </div>

    <div class="section">
      <a id="example"></a>
      <h2>Example</h2>
      <p>
        See <a href="http://dft.ba/-ljmmm01example">http://dft.ba/-ljmmm01example</a>.
      </p>
    </div>
    
    <div class="section">
      <a id="structure"></a>
      <h2>Document structure</h2>
      <p>
        LJMMM documents, simply JSON files with some additional restrictions, require a certain structure. The JSON file should...

CSS

h1
{
  font-size: 30px;
  padding-bottom: 15px;
}

h2
{
  font-size: 21px;
}

ul
{
  list-style-type: circle;
}

.section
{
  padding-bottom: 15px;
}