I am trying to use a for loop in html but i dont even know if this is possible. Is it? and if yes how? I dont want to use php. only html and javascript.
this is my
May be you can play with javascript and innerHTML. Try this
HTML
Javascript
function selectFunction(){ var x=0; for(x=0;x<5;x++){ var option = "Label " + x + "" document.getElementById('selectId').innerHTML += option; } }