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