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