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