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