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