917661a99f789d7637f768c919346c70f42273f3
kate
  Thu Dec 15 12:07:29 2016 -0800
Add numbered list. refs #18504

diff --git src/hg/htdocs/template.html src/hg/htdocs/template.html
index 42ec976..6285d4a 100755
--- src/hg/htdocs/template.html
+++ src/hg/htdocs/template.html
@@ -46,41 +46,62 @@
 On June 22, 2000, UCSC and the other members of the International Human Genome Project consortium
 completed the first working draft of the human genome assembly, forever ensuring
 free public access to the genome and the information it contains. 
         </p>
     </div>
     <div class="col-md-6">
         <h2>Another section</h2>
         <p>
         Here is a bulleted list ('ul' and 'li' elements):
         </p>
         <ul>
             <li>red</li>
             <li>white</li>
             <li>blue</li>
         </ul>
+
         <p>
         Here is a table:
            <br> ('table', 'tr', 'th', and 'td' elements);</br>
         </p>
         <table>
             <tr>
                 <th>Type</th>
                 <th>Total</th>
             </tr>
             <tr>
                 <td>Chromosomes</td>
                 <td>261</td>
             </tr>
             <tr>
                 <td>Haplotypes</td>
                 <td>261</td>
             </tr>
             <tr>
                 <td>Unlocalized contigs</td>
                 <td>1270</td>
             </tr>
         </table>
+
+        <p>
+        Here is a numbered list ('ol' and 'li' elements):
+        </p>
+        <ol>
+            <li>
+<strong>chrom</strong> - The name of the chromosome (e.g. chr3, chrY, chr2_random) or 
+scaffold (e.g. scaffold10671).
+            </li>
+            <li>
+<strong>chromStart</strong> - The starting position of the feature in the chromosome or scaffold. 
+The first base in a chromosome is numbered 0.
+            </li>
+            <li>
+<strong>chromEnd</strong> - The ending position of the feature in the chromosome or scaffold. 
+The <em>chromEnd</em> base is not included in the display of the feature. 
+For example, the first 100 bases of a chromosome are defined 
+as <em>chromStart=0, chromEnd=100</em>, and span the bases numbered 0-99.
+</li>
+        </ol>
     </div>
 </div>
 
 <!--#include virtual="gbPageEnd.html"-->