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