I started learning HTML + CSS a week or two ago, and I\'m facing a problem. I\'m european so I need to use special characters like á, ã, ç , etc a lot. Is there any other wa
<meta charset="utf-8">
to your <head>
to instruct the browser to treat the page as UTF-8 encoded.
Content-Type: text/html; charset=utf-8
HTTP header, since that takes precedence if present. Consult the manual of your web server how to do that.Further reading: