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