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