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