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