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