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