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