reformat html (#124)

This commit is contained in:
seregaxvm
2019-11-14 20:59:54 +03:00
committed by Marcos
parent ca4fb20c00
commit f13a10a01f
10 changed files with 730 additions and 727 deletions

View File

@@ -1,24 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<script>
document.addEventListener("DOMContentLoaded", function ()
{
var number = window.location.search;
if ( number == '') number = 0;
else number = number.substring(1,);
number = parseInt(number) + 1;
document.getElementById('count').innerHTML = number;
window.location.search = '?' + number;
}
)
</script>
</head>
<body>
<br>This page reloads itself as fast as it can to test the server.</br>
<br>It is meant as a stress test to see when and if the server fails.</br>
<h1 id="count" class="countclass">
</h1>
</body>
<html lang="en">
<head>
<title>Counter</title>
<script>
document.addEventListener("DOMContentLoaded", function ()
{
var number = window.location.search;
if ( number == '') number = 0;
else number = number.substring(1,);
number = parseInt(number) + 1;
document.getElementById('count').innerHTML = number;
window.location.search = '?' + number;
})
</script>
</head>
<body>
<br>This page reloads itself as fast as it can to test the server.<br>
<br>It is meant as a stress test to see when and if the server fails.<br>
<h1 id="count" class="countclass">-</h1>
</body>
</html>