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