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