Como abrir o arquivo HTML com JavaScript
// In my case, I used a button to activate this function:
function myFunction() {
window.location.href = 'index.html';
}
Hello There