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