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