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