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