|
If you want to make a drop down menu using HTML, then you have to use select tag for that.
For an Example, if you want to create a drop down list for States of USA, then you can use following code:
<select>
<option value="USA">USA</option>
<option value="UK">UK</option>
<option value="Canada">Canada</option>
</select>
You can use marquee tag to make a continuous marquee.
|