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