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