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