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