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