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