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