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