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