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