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