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