While doing the course i had a power outage in the house,
when we got the electricity back on i tried loading my website.html and it doesn’t load anymore, it technically is unresponsive.
I’m not quite sure what the issue is if i could get some clarity on this it would be great.
the code in the file:
THIS is life<body>
<h1>This is the title</h1>
<script>
var texttodisplay="hellooo";
for (var counter = 0; counter<100; counter-=5 ){
document.write("<h1> Another loop iteration</h>");
document.write("<h2>Counter is now "+ counter +
" " +texttodisplay +"</h2>");
}
</script>
</body>