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