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