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