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