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