<!DOCTYPE html>
<
html
>
<
body
>
<
h1
style
=
"color: green"
>
GeeksforGeeks
</
h1
>
<
p
>
Click on the buttons below to change
the language of the webpage.
</
p
>
<
button
onclick
=
"changeLanguage('eng')"
>
Change to English<
/
button
>
<
button
onclick
=
"changeLanguage('es')"
>
Change to Spanish
</
button
>
<
button
onclick
=
"changeLanguage('hin')"
>
Change to Hindi
</
button
>
<
p
id
=
"siteContent"
>
Welcome to the GeeksforGeeks Portal!
You can choose any language using the
buttons above!
</
p
>
<
script
>
// Create a function to change
// the hash value of the page
function changeLanguage(lang) {
location.hash = lang;
location.reload();
}
// Define the language reload anchors
var language = {
eng: {
welcome: "Welcome to the GeeksforGeeks " +
"Portal! You can choose any language " +
"using the buttons above!"
},
es: {
welcome: "¡Bienvenido al portal GeeksforGeeks! " +
"¡Puedes elegir cualquier idioma usando " +
"los botones de arriba!"
},
hin: {
welcome: "GeeksforGeeks पोर्टल पर आपका स्वागत है! " +
"आप ऊपर दिए गए बटन का उपयोग करके किसी भी " +
"भाषा को चुन सकते हैं!"
}
};
// Check if a hash value exists in the URL
if (window.location.hash) {
// Set the content of the webpage
// depending on the hash value
if (window.location.hash == "#es") {
siteContent.textContent =
language.es.welcome;
}
else if (window.location.hash == "#hin") {
siteContent.textContent =
language.hin.welcome;
}
}
</
script
>
</
body
>
</
html
>