for instruction in bash with iterator

#!/bin/bash

for (( i=1; i<=15; i++ ))
do
  echo $i.html
done