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