The website displays either English or Portuguese text on almost every page. Both language versions are stored together on the same page, but only one is shown at a time. CSS coding is used to show one language and hide the other.
Each piece of text is enclosed (“wrapped”) in HTML that identify its language:
<span class=”eng”>ENGLISH TEXT</span>
<span class=”port”>PORTUGUESE TEXT</span>
Example:
<p>
<span class=”eng”>Welcome</span>
<span class=”port”>Bem-vindo</span>
</p>