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