Use on the webTotal Use [ 5618 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/102d3db8c1f5d024dc1231e1ce655dfb?family=Funtauna+Otg" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/102d3db8c1f5d024dc1231e1ce655dfb?family=Funtauna+Otg);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Funtauna Otg";
src: url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.eot");
src: url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/102d3db8c1f5d024dc1231e1ce655dfb.svg#Funtauna Otg")format("svg");
}
2CSS rules to specify fonts
font-family: "Funtauna Otg";