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