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