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