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