Use on the webTotal Use [ 5919 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b24f8f1a8edc4d10ef8ba1ba0b86dbab?family=Sirfiung" 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/b24f8f1a8edc4d10ef8ba1ba0b86dbab?family=Sirfiung);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Sirfiung";
src: url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.eot");
src: url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b24f8f1a8edc4d10ef8ba1ba0b86dbab.svg#Sirfiung")format("svg");
}
2CSS rules to specify fonts
font-family: "Sirfiung";