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