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