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