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