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