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