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