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