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