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