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