Reputation: 1369
Ok so im spelling a word in portuguese and instead of PROGRAMAÇÃO it comes out like PROGRAMAÇÃO.. it seems it does not get the accent symbols correct.. anybody have an idea?
This is in a:
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li><a href="#">PROGRAMAÇÃO</a></li> <!--Here-->
</ul>
</div>
</div>
Upvotes: 0
Views: 54
Reputation: 3783
It's not a bootstrap issue.
Add <meta charset="utf-8">
into the <head>
section
Upvotes: 2