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