i want to make a FAQ page ,, but i am facing a problem
How to make an HTML flag so that when u click on the question the browser takes you down to the question, so that the user doesnt have to search for his question down..
PLAEse help ,,, how does this called a flag??? i am using dreamweaver !

What you are talking about is a page jump. You need to use a specific identifier for each question. I will post an example below.

<a href="#question1">Question 1</a>

If you have a div or a span, you should be able to assign it an id (question1 for the example above) and then point your anchor to that id name. For example:

<div id="question1">
<p>Answer to question 1</p>
</div>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.