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