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