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