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