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