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