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