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