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