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