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