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