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