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