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