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