Static Html Website – Bootstrap – Multi language Support
You can do this within a single file without using any server-side programming languages. You should check out i18next for a proper javascript solution. You can also use pure CSS to translate a homepage. Try something like .en, .de, .it { display:none; } /* hide all elements with a language class */ .en:lang(en), .de:lang(de), .it:lang(it) … Read more