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