<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<img src="/foto/1.jpg" alt="Картинка №1">
</body>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<img src="/foto/859.jpg" alt="Картинка №859">
</body>
var i = 1;
var timerId = setInterval(() => {
if (i == 1000) clearInterval(timerId);
var tpl = `<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<img src="/foto/${i}.jpg" alt="Картинка №${i}">
</body>`;
download(i + '.html', tpl);
i++;
}, 1000);
function download(filename, text) {
var pom = document.createElement('a');
pom.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
pom.setAttribute('download', filename);
pom.click();
}