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