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