I have been using Bootstrap for a while now and I mostly write in English.
I would like to import Swedish letters. When I try to get the letters å, ä, ö from google fonts it do not seem to work.
I have been using Bootstrap for a while now and I mostly write in English.
I would like to import Swedish letters. When I try to get the letters å, ä, ö from google fonts it do not seem to work.
There are a few things you can do. First, I would recommend using the proper character set in your HTML by putting something like this in your <head>
:
<meta http-equiv="content-type" content="text/html" charset="ISO-8859-1" />
You can also use HTML encoding for your Swedish characters:
Å
å
Ä
ä
Ö
ö
There is also a similar article on Stackoverflow: Swedish characters and UTF-8
Hope this helps.