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