How to make Documention (or FAQ)- html


To create documention in html please follow below steps:

For examle, lets take  titles are title1, title2, title3 and contents are content1, content2, content3

The code will be:

<html>

<title>How to make Documention (or FAQ) </title>

<h1>Documentation</h1>

<a name="contents section1"><a href="#section2">title1</a><br/>

<a name="contents section2"><a href="#section3">title2</a><br/>

<a name="contents section3"><a href="#section4">title3</a><br/>


<h3><a name="section1">title1</a></h3>
<p>content1</p>


<h3><a name="section2">title2</a></h3>
<p>content2</p>

<h3><a name="section3">title3</a></h3>
<p>content3</p>

</html>





{ 0 comments... read them below or add one }

Post a Comment