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