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