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