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