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