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