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