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