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