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