I have mulitple tables across 3 HTML pages , the heading of these tables are to remain same i.e .
<thead>
<tr>
<th>MyHeading</th>
</tr>
</thead>
I want to store the MyHeading
string in a constant and use it across HTML pages in all my tables.
I am constrained to use pure HTML and javascript.
How do i do this in pure HTML i.e. storing static text in some constants so that I could reuse them across HTML pages