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