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