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