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