Hmm, no, it isn't possible on Hmtl alone. The reason is that .html is for client-side usage, which means, it manages
how and not
what information is going to be displayed on the screen. But you can use a .php file to help you with the loop. Here's an example for it using a while cycle:
<?php
$i=1;//this is the counter
while ($i<=100){
echo 'Your line. ';
$i++;//this is to increase the counter
}
?>
Just remember that because this is a php file, you will need to open it through your browser from the server, or else it wont work.