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