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