Update travel website submodule

This commit is contained in:
yourname
2026-07-03 18:01:32 +03:00
parent 59f1cf4a8b
commit e2960b802a
8 changed files with 1951 additions and 135 deletions

View File

@@ -2,7 +2,7 @@
var button = document.getElementById("li1");
button.addEventListener("click", function(){
document.location.href = 'index.html';
document.location.href = 'start.html';
});
var button = document.getElementById("li2");
@@ -17,12 +17,21 @@ button.addEventListener("click", function(){
document.location.href = 'Explore.html';
});
// Logo - Home button
var logoButton = document.getElementById("logo-home");
if (logoButton) {
logoButton.addEventListener("click", function(){
document.location.href = 'start.html';
});
}
//btns
var button = document.getElementById("btn1");
button.addEventListener("click", function(){
document.location.href = '/Explore.html';
document.location.href = 'Explore.html';
});
var button = document.getElementById("btn2");