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