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