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