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