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