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