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