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