I'm searching for UTF-8 fonts to add it to my webpage, but I don't find.
(function() {
var link_element = document.createElement("link"),
s = document.getElementsByTagName("script")[0];
if (window.location.protocol !== "http:" && window.location.protocol !== "https:") {
link_element.href = "http:";
}
link_element.href += "//fonts.googleapis.com/css?family=Josefin+Slab:100italic,100,300italic,300,400italic,400,600italic,600,700italic,700";
link_element.rel = "stylesheet";
link_element.type = "text/css";
s.parentNode.insertBefore(link_element, s);
document.getElementsByTagName("html")[0].style.fontStyle = "Josefin Slab";
})();
* {
font-family: "Josefin Slab";
font-size: 30px;
}
This happens when I write Ő, Ű, ő or ű
I want to display "Ő", "Ű", "ő" and "ű". Can someone help?