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