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