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