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