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