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