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