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