Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<a href="#section1" ...>Click me for section 1!</a>
...
...
...
<a name="section1">This is section one!</a>
<cfoutput>
<cfset I = 2>
<cfset columns = 3>
<table align="center" cellspacing="5" cellpadding="5" border="0">
<cfloop query="GetCat">
<cfif i MOD columns EQ 1>
<tr>
</cfif>
<td><a href="Section1?catID=#FAQCatID#">#FAQCategoryName#</a></td>
<cfif i MOD columns EQ 0>
</tr>
</cfif>
<cfset i = i + 1>
</cfloop>
<cfif i MOD columns NEQ 1>
</tr>
</cfif>
</cfoutput>
</table>
<a name="Section1">This is section 1!!</a>