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