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