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