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