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