Changing the "lang" attribute of the html tag

For anyone wondering, you can just use javascript in the “Inside head tag” section of the page:

<script type="text/javascript">
	document.documentElement.setAttribute("lang", 'de');
</script>  

3 Likes