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