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