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