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