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