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