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