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