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