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